/* =========================================
   SEÇÃO DEPOIMENTOS  (cards padronizados)
   ========================================= */
.section-depoimentos {
    background-color: var(--bg-dark);
    padding: 100px 0;
}

.depo-header { text-align: center; margin-bottom: 64px; }
.depo-eyebrow {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}
.depo-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}
.depo-title span { color: var(--gold); font-style: normal; }
.depo-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 18px auto 0;
    line-height: 1.6;
}

.depo-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.depo-card {
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 10px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.depo-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.depo-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--gold);
    padding: 2px;
    object-fit: cover;
}
.avatar-initials {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, #1a1611, #0c0a07);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 600; letter-spacing: 1px;
}

.depo-card-meta { display: flex; flex-direction: column; }
.depo-name { color: #fff; font-size: 1.05rem; font-weight: 600; line-height: 1.2; }

.depo-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.depo-stars svg { width: 18px; height: 18px; }
.depo-stars svg path { fill: var(--gold); }

.depo-text { color: #c4c4c4; font-size: 0.95rem; line-height: 1.65; }

.depo-disclaimer {
    text-align: center;
    color: #555;
    font-size: 0.78rem;
    line-height: 1.6;
    max-width: 760px;
    margin: 56px auto 0;
}

/* =========================================
   SEÇÃO VALORES FECHADOS
   ========================================= */
.section-valores {
    background-color: #030303;
    padding: 100px 0;
    border-top: 1px solid #141414;
}

.valores-header { text-align: center; margin-bottom: 56px; }
.valores-eyebrow {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}
.valores-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}
.valores-title span { color: var(--gold); font-style: normal; }
.valores-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 18px auto 0;
    line-height: 1.6;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.valor-card {
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 10px;
    padding: 28px 26px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.valor-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.valor-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 14px;
}
.valor-name {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.valor-desc {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* =========================================
   RESPONSIVO
   ========================================= */
@media (max-width: 1000px) {
    .depo-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .depo-wall { grid-template-columns: 1fr; gap: 18px; }
    .depo-title { font-size: 1.9rem; }
    .section-depoimentos { padding: 70px 0; }
    .depo-card { padding: 24px; }
    .depo-text { font-size: 0.98rem; }
    .depo-header { margin-bottom: 44px; }
}

/* =========================================
   TRAVA DE OVERFLOW HORIZONTAL (mobile)
   As animações fade-left/right começam deslocadas pro lado e criavam
   um leve scroll horizontal no celular. A navbar é fixed, então isto não a afeta.
   ========================================= */
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; }

/* =========================================
   SEÇÃO MÉTODO O.R.D.E.M. — 5 cards lado a lado
   (sobrescreve o aspect-ratio quadrado e dá visual premium)
   ========================================= */
.mto-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

.mto-card-v2 {
    flex: 1 1 calc(20% - 20px);
    max-width: calc(20% - 20px);
    aspect-ratio: auto;            /* remove o quadrado */
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 10px;
    padding: 34px 22px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.mto-card-v2:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.mto-content-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.mto-big-letter {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 16px;
}
.mto-big-letter::after {     /* tracinho dourado sob a letra */
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 26px;
    height: 2px;
    background: var(--gold);
    opacity: 0.7;
}

.mto-card-v2 h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-transform: none;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mto-card-v2 .highlight-p {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mto-card-v2 .mto-desc {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}

/* Responsivo do método */
@media (max-width: 1100px) {
    .mto-card-v2 { flex-basis: calc(33.333% - 20px); max-width: calc(33.333% - 20px); }
}
@media (max-width: 768px) {
    .mto-card-v2 { flex-basis: calc(50% - 20px); max-width: calc(50% - 20px); padding: 28px 18px; }
}
@media (max-width: 460px) {
    .mto-card-v2 { flex-basis: 100%; max-width: 100%; }
}

/* =========================================
   AJUSTE: BIO alinhada à esquerda (tira os vãos do justify)
   ========================================= */
.bio-text { text-align: left !important; }

/* =========================================
   AJUSTE: FUNDO UNIFORME ENTRE SEÇÕES
   Todas as seções no mesmo #050505, sem degrau de cor nem linha de emenda.
   !important para vencer os estilos inline do HTML.
   ========================================= */
.section-dark,
.market-section,
.access-section,
.section-mto,
.section-profile,
.section-filter,
.section-produtos,
.section-depoimentos,
.quiz-section {
    background-color: #050505 !important;
}
.section-mto { border-bottom: none !important; }
#valores { border-top: none !important; }

/* =========================================
   COMPATIBILIDADE SAFARI / iOS
   backdrop-filter precisa do prefixo -webkit- no Safari (senão o blur some).
   ========================================= */
.main-navbar.scrolled {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.btn-outline {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

/* =========================================
   AJUSTE MOBILE: espaçamento entre seções
   Várias seções tinham 100px de padding (inclusive inline), criando
   um vão grande no celular. Aqui unifico o respiro vertical no mobile.
   ========================================= */
@media (max-width: 640px) {
    .market-section,
    .access-section,
    .section-dark,
    .section-profile,
    #bio,
    .section-filter,
    .section-mto,
    .section-depoimentos,
    .quiz-section {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }
}

/* =========================================
   ABAS HISTÓRIAS / RESULTADOS + FAIXA DE NÚMEROS
   ========================================= */
.prova-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}
.prova-tab {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
    background: transparent;
    border: 1px solid #1f1f1f;
    border-radius: 40px;
    padding: 12px 30px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.prova-tab:hover { color: #fff; border-color: #333; }
.prova-tab.active {
    color: #0a0a0a;
    background: var(--gold);
    border-color: var(--gold);
}

/* Painéis: só o ativo aparece (encurta a página) */
.prova-panel { display: none; }
.prova-panel.active { display: block; animation: provaFade 0.4s ease; }
@keyframes provaFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Faixa de números (cards menores) — fixa, aparece nas duas abas */
.prova-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0 0 44px;
}
.prova-stat {
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.prova-stat:hover { border-color: var(--gold); transform: translateY(-3px); }
.ps-num {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 10px;
}
.ps-label {
    color: #888;
    font-size: 0.82rem;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .prova-stats { grid-template-columns: 1fr; gap: 14px; }
    .prova-tab { padding: 11px 24px; font-size: 0.78rem; }
}

/* =========================================
   AJUSTE ITEM 3 (v2) — nomes do método inteiros, sem quebra com hífen.
   "Reconhecimento" quebrava como "Reconheci-mento". Fonte reduzida +
   sem hifenização garante o nome em uma linha (ou inteiro), centrado.
   ========================================= */
.mto-card-v2 { padding-left: 16px; padding-right: 16px; }
.mto-card-v2 h3 {
    font-size: clamp(0.82rem, 1.15vw, 0.98rem);
    line-height: 1.25;
    letter-spacing: 0.2px;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
    padding: 0;
    text-wrap: balance;
}
.mto-card-v2 .highlight-p { font-size: 0.66rem; }
.mto-card-v2 .mto-desc { font-size: 0.82rem; }
@media (max-width: 1100px) {
    .mto-card-v2 h3 { font-size: clamp(0.85rem, 2.2vw, 1rem); }
}

/* =========================================
   ITEM 3 — CTA discreto após depoimentos
   ========================================= */
.depo-cta-wrap { text-align: center; margin-top: 40px; }
.depo-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-light);
    text-decoration: none;
    border: 1px solid var(--gold-dark);
    border-radius: 40px;
    padding: 13px 34px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.depo-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0a0a;
}
