/* =====================================================================
   REFORMULAÇÃO ORDEM.CLUB — seções novas/ajustadas
   Mantém a estética do site: fundo #050505, cards #080808, dourado #C6A87C,
   Cinzel (heading) + Montserrat (body).
   ===================================================================== */

/* ---------------------------------------------------------------------
   ITEM 1 — CLAREZA DE MERCADO: pontos viram cards com check dourado
   --------------------------------------------------------------------- */
.market-points-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mkt-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    padding: 24px 26px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.mkt-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.mkt-check {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--gold-dark);
    background: rgba(198, 168, 124, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.mkt-check svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mkt-card-body h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
}
.mkt-card-body p {
    color: #999;
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 640px) {
    .mkt-card { padding: 20px; gap: 14px; }
    .mkt-card-body h3 { font-size: 1.06rem; }
}

/* ---------------------------------------------------------------------
   ITEM 6 — "VOCÊ TEM DUAS OPÇÕES A PARTIR DAQUI" (no lugar do filtro)
   --------------------------------------------------------------------- */
.section-options {
    background-color: #050505;
    padding: 100px 0;
}
.options-header { text-align: center; margin-bottom: 56px; }
.options-eyebrow {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}
.options-title {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.18;
}
.options-title .ital { color: var(--gold); font-style: normal; }

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}
.opt-card {
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    padding: 38px 34px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.opt-card-second {
    border-color: var(--gold-dark);
    box-shadow: 0 0 40px rgba(198, 168, 124, 0.08);
}
.opt-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}
.opt-label {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: #666;
    margin-bottom: 18px;
}
.opt-card-second .opt-label { color: var(--gold); }
.opt-text {
    color: #cfcfcf;
    font-size: 1.02rem;
    line-height: 1.62;
    margin: 0;
}
.opt-text b { color: var(--gold-light); font-weight: 600; }
.options-tagline {
    text-align: center;
    color: #777;
    font-family: var(--font-heading);
    font-style: normal;
    font-size: 1.15rem;
    margin: 40px 0 34px;
}
.options-cta-wrap { text-align: center; }
.options-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.86rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a0a0a;
    background: linear-gradient(90deg, #b08d55, #dcb983, #b08d55);
    background-size: 200% auto;
    text-decoration: none;
    border-radius: 8px;
    padding: 18px 46px;
    transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.options-cta:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(176, 141, 85, 0.35);
}
@media (max-width: 820px) {
    .options-grid { grid-template-columns: 1fr; gap: 18px; max-width: 480px; }
    .options-title { font-size: 2rem; }
    .opt-card { padding: 30px 26px; }
}

/* ---------------------------------------------------------------------
   ITEM 4 — DIAGNÓSTICO ESTRATÉGICO (formulário)
   --------------------------------------------------------------------- */
.section-diag {
    background-color: #050505;
    padding: 100px 0;
}
.diag-head { text-align: center; margin-bottom: 44px; }
.diag-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #2a2620;
    background: #0c0b09;
    border-radius: 40px;
    padding: 9px 20px;
    margin-bottom: 30px;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
}
.diag-pill::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}
.diag-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
}
.diag-title .gold { color: var(--gold); }
.diag-sub {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.diag-card {
    max-width: 620px;
    margin: 0 auto;
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    padding: 14px 38px 38px;
}
.diag-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 22px 0 26px;
    margin-bottom: 30px;
    border-bottom: 1px solid #1a1a1a;
}
.diag-step {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.92rem;
    color: #555;
    font-weight: 500;
}
.diag-step .dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #333;
}
.diag-step.active { color: var(--gold-light); }
.diag-step.active .dot { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.diag-step-sep { color: #333; }

.diag-field { margin-bottom: 22px; }
.diag-field label {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.diag-field label span { color: var(--gold); }
.diag-input {
    width: 100%;
    background: #0c0c0c;
    border: 1px solid #232323;
    border-radius: 10px;
    padding: 16px 18px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.diag-input::placeholder { color: #555; }
.diag-input:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(198, 168, 124, 0.08);
}
.diag-phone { display: flex; gap: 10px; }
.diag-flag {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0c0c0c;
    border: 1px solid #232323;
    border-radius: 10px;
    padding: 0 16px;
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
}
.diag-submit {
    width: 100%;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a0a0a;
    background: linear-gradient(90deg, #b08d55, #dcb983, #b08d55);
    background-size: 200% auto;
    border: none;
    border-radius: 10px;
    padding: 18px;
    cursor: pointer;
    transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.diag-submit:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(176, 141, 85, 0.35);
}
.diag-hint {
    text-align: center;
    color: #555;
    font-style: normal;
    font-size: 0.85rem;
    margin-top: 18px;
}
.diag-success {
    display: none;
    text-align: center;
    padding: 20px 10px 6px;
}
.diag-success .ds-icon {
    width: 64px; height: 64px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 1px solid var(--gold-dark);
    background: rgba(198, 168, 124, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
}
.diag-success h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 14px;
}
.diag-success p { color: #999; font-size: 1rem; line-height: 1.6; max-width: 420px; margin: 0 auto 26px; }
.diag-success .diag-submit { display: inline-block; width: auto; padding: 16px 40px; text-decoration: none; }

@media (max-width: 640px) {
    .section-diag { padding: 70px 0; }
    .diag-title { font-size: 2.2rem; }
    .diag-card { padding: 10px 22px 30px; border-radius: 14px; }
}

/* ---------------------------------------------------------------------
   ITEM 8 — FECHAMENTO MOTIVACIONAL
   --------------------------------------------------------------------- */
.section-closing {
    background-color: #050505;
    padding: 110px 0 120px;
    text-align: center;
}
.closing-frame {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    overflow: visible;
}
.closing-frame::before {
    content: "";
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
}
.closing-ornament {
    display: block;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 22px;
    opacity: 0.85;
}
.closing-eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
}
.closing-text {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.32;
    max-width: 720px;
    margin: 0 auto 20px;
}
.closing-text .gold { color: var(--gold); font-style: normal; }
.closing-sub {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 38px;
}
.closing-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.86rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a0a0a;
    background: linear-gradient(90deg, #b08d55, #dcb983, #b08d55);
    background-size: 200% auto;
    text-decoration: none;
    border-radius: 8px;
    padding: 18px 48px;
    transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.closing-cta:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(176, 141, 85, 0.35);
}
.closing-note {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 420px;
    margin: 22px auto 0;
}
@media (max-width: 640px) {
    .section-closing { padding: 72px 0 80px; }
    .closing-frame { padding: 0; border-radius: 0; }
    .closing-text { font-size: 1.6rem; }
}

/* ---------------------------------------------------------------------
   FAQ — perguntas e respostas (acordeão)
   --------------------------------------------------------------------- */
.section-faq {
    background-color: #050505;
    padding: 100px 0;
}
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-eyebrow {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}
.faq-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}
.faq-title .ital { color: var(--gold); font-style: normal; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item.open { border-color: var(--gold-dark); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 24px 26px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.faq-q:hover { color: var(--gold-light); }
.faq-ico {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-a p {
    color: #999;
    font-size: 0.96rem;
    line-height: 1.65;
    padding: 0 26px 24px;
    margin: 0;
}
@media (max-width: 640px) {
    .section-faq { padding: 70px 0; }
    .faq-title { font-size: 1.8rem; }
    .faq-q { padding: 20px; font-size: 0.96rem; }
    .faq-a p { padding: 0 20px 20px; }
}

/* ---------------------------------------------------------------------
   ITEM 1 — HERO: barra de números discreta
   --------------------------------------------------------------------- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 40px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-stat .hs-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1.1;
    letter-spacing: 0.5px;
}
.hero-stat .hs-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    margin-top: 5px;
}
.hero-stat-sep {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #3a3225, transparent);
}
@media (max-width: 560px) {
    .hero-stats { gap: 14px; }
    .hero-stat .hs-num { font-size: 1.05rem; }
    .hero-stat .hs-label { font-size: 0.62rem; letter-spacing: 1px; }
    .hero-stat-sep { height: 24px; }
}

/* ---------------------------------------------------------------------
   ITEM 4 — SEÇÃO O MERCADO (reformulada / editorial)
   --------------------------------------------------------------------- */
.section-mercado-v2 {
    background-color: #050505;
    padding: 110px 0;
}
.mv2-head { margin-bottom: 50px; text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.mv2-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
}
.mv2-title {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.14;
    margin-bottom: 22px;
}
.mv2-title .ital { color: var(--gold); font-style: normal; }
.mv2-lead {
    color: #b4b4b4;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
}

.mv2-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1040px;
    margin: 0 auto;
}
.mv2-card {
    position: relative;
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    padding: 34px 32px 32px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.mv2-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.55);
}
.mv2-card-gold {
    border-color: var(--gold-dark);
    box-shadow: 0 0 40px rgba(198,168,124,0.07);
}
.mv2-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.85;
}
.mv2-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
}
.mv2-card p {
    color: #9a9a9a;
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
}

.mv2-cta-wrap { margin-top: 48px; text-align: center; }
.mv2-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.86rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a0a0a;
    background: linear-gradient(90deg, #b08d55, #dcb983, #b08d55);
    background-size: 200% auto;
    text-decoration: none;
    border-radius: 8px;
    padding: 17px 44px;
    transition: background-position 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.mv2-cta:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(176, 141, 85, 0.35);
}
@media (max-width: 760px) {
    .mv2-cards { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
    .section-mercado-v2 { padding: 72px 0; }
    .mv2-title { font-size: 2rem; }
    .mv2-lead { font-size: 1rem; }
    .mv2-card { padding: 26px 22px; }
    .mv2-card h3 { font-size: 1.2rem; }
}

/* ---------------------------------------------------------------------
   ITEM 9 — SEÇÃO GARANTIA (elaborada, 2 cards)
   --------------------------------------------------------------------- */
.section-garantia {
    background-color: #050505;
    padding: 100px 0;
}
.garantia-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.garantia-icon {
    width: 64px; height: 64px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 1px solid var(--gold-dark);
    background: rgba(198, 168, 124, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.9rem;
}
.garantia-eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}
.garantia-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.garantia-title .ital { color: var(--gold); font-style: normal; }
.garantia-subtitle {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto;
}

.garantia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 980px;
    margin: 0 auto;
    align-items: stretch;
}
.garantia-box {
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    padding: 36px 32px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.garantia-box:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.55);
}
.garantia-box-gold {
    border-color: #1f1f1f;
    box-shadow: none;
}
.gb-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    border: 1px solid #262626;
    background: linear-gradient(145deg, #141414, #0b0b0b);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.gb-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.gb-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
    text-transform: none;
}
.gb-text {
    color: #9a9a9a;
    font-size: 0.96rem;
    line-height: 1.7;
    margin: 0;
}
.gb-text b { color: var(--gold-light); font-weight: 600; }
.garantia-foot {
    text-align: center;
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 40px auto 0;
}
@media (max-width: 760px) {
    .garantia-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
    .section-garantia { padding: 70px 0; }
    .garantia-title { font-size: 1.8rem; }
    .garantia-box { padding: 28px 22px; }
}

/* ---------------------------------------------------------------------
   ITEM 11 — FOOTER com links legais
   --------------------------------------------------------------------- */
.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 26px 0 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
}
.site-footer .footer-links a {
    color: #999;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer .footer-links a:hover { color: var(--gold-light); }
.site-footer .footer-copy {
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    margin: 0;
}
@media (max-width: 640px) {
    .site-footer .footer-links { gap: 8px 18px; }
    .site-footer .footer-links a { font-size: 0.78rem; }
}

/* =====================================================================
   CORREÇÕES — itens 2, 6, 7 (espaço vazio, corte no topo, cor de fundo)
   ===================================================================== */

/* ITEM 7 — FUNDO TOTALMENTE UNIFORME (#050505 em tudo, sem degraus/linhas)
   Cobre seções, hero e remove bordas de transição que viravam "linha". */
body { background-color: #050505; }
.section-profile,
#bio,
.section-mercado-v2,
.access-section,
.section-mto,
.section-produtos,
.section-garantia,
.section-faq,
.section-closing,
.section-valores,
.section-options,
.section-diag,
.section-depoimentos {
    background-color: #050505 !important;
}
/* matar bordas/linhas de emenda entre seções */
.section-valores,
.section-closing { border-top: none !important; }
#valores { border-top: none !important; }

/* ITEM 6 — HERO: corrigir corte no topo.
   Em vez de centralizar rígido em 100vh (que empurra o conteúdo pra trás
   da navbar quando ele cresce), usamos min-height + padding seguro. */
.hero, header.hero {
    height: auto;
    min-height: 100vh;
    align-items: center;
    padding-top: 120px;     /* espaço pra navbar fixa */
    padding-bottom: 60px;
    box-sizing: border-box;
}
.hero-content {
    margin-top: 0;          /* o padding do hero já compensa a navbar */
    width: 100%;
}

/* ITEM 2 — ESPAÇO VAZIO: respiro vertical mais enxuto e consistente.
   Reduz os 100px herdados (inclusive inline) sem encostar o conteúdo. */
.access-section,
.section-mercado-v2,
.section-produtos,
.section-diag,
.section-profile,
.section-options { padding-top: 84px !important; padding-bottom: 84px !important; }
.access-section .text-center[style*="margin-bottom: 80px"] { margin-bottom: 52px !important; }

/* DEPOIMENTOS: havia muito ar entre disclaimer e CTA */
.depo-disclaimer { margin-top: 40px; }

/* CROSS-BROWSER / SAFARI-iOS */
.hero-bg { -webkit-filter: brightness(0.4) contrast(1.1); }
* { -webkit-tap-highlight-color: transparent; }

/* ===== MOBILE: itens 2 e 6 no celular ===== */
@media (max-width: 640px) {
    .hero, header.hero {
        min-height: 100svh;       /* evita o "pulo" da barra do navegador no iOS */
        padding-top: 104px;
        padding-bottom: 48px;
    }
    .access-section,
    .section-mercado-v2,
    .section-produtos,
    .section-diag,
    .section-profile,
    .section-options { padding-top: 56px !important; padding-bottom: 56px !important; }
    .access-section .text-center[style*="margin-bottom: 80px"] { margin-bottom: 36px !important; }

    /* título da hero não pode forçar uma linha no celular (estava cortando) */
    .hero-title { white-space: normal !important; }
}

/* ---------------------------------------------------------------------
   DIAGNÓSTICO — embed YayForms
   O widget usa height:100%, então o contêiner precisa de altura definida.
   --------------------------------------------------------------------- */
.diag-yay {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
    min-height: 640px;
    height: 640px;
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    overflow: hidden;
}
.diag-yay iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}
@media (max-width: 640px) {
    .diag-yay { min-height: 580px; height: 580px; border-radius: 14px; }
}

/* ---------------------------------------------------------------------
   MODAL YAYFORMS (Consultoria de Carreira)
   --------------------------------------------------------------------- */
.yay-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.yay-modal.open { display: flex; }
.yay-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.yay-modal-box {
    position: relative;
    width: 100%;
    max-width: 680px;
    height: 80vh;
    max-height: 720px;
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    overflow: hidden;
    animation: yayIn 0.3s ease;
}
@keyframes yayIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.yay-modal-close {
    position: absolute;
    top: 12px; right: 14px;
    z-index: 2;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid #2a2620;
    background: #0c0b09;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}
.yay-modal-close:hover { background: var(--gold); color: #0a0a0a; }
.yay-modal-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.yay-modal-content iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}
body.yay-open { overflow: hidden; }
@media (max-width: 640px) {
    .yay-modal { padding: 12px; }
    .yay-modal-box { height: 88vh; border-radius: 14px; }
}
