/* ══════════════════════════════════════════════
   TOKENS & RESET
══════════════════════════════════════════════ */
:root {
    --bg:       #faf8f5;
    --bg2:      #f4efe8;
    --bg3:      #ece5d8;
    --rose:     #f7f0ea;
    --dark:     #1a1610;
    --dark2:    #2c2318;
    --gold:     #b5924c;
    --gold-l:   #d4ae72;
    --gold-d:   #8a6d35;
    --gold-dim: rgba(181,146,76,0.10);
    --text:     #1a1610;
    --muted:    rgba(26,22,16,0.52);
    --dim:      rgba(26,22,16,0.28);
    --border:   rgba(26,22,16,0.09);
    --border-g: rgba(181,146,76,0.28);
  }
  
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Jost', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16.5px; /* era "default" do browser — sobe a leitura */
  }
  
  /* ══════════════════════════════════════════════
     LAYOUT HELPERS
  ══════════════════════════════════════════════ */
  .container { width: 92%; max-width: 1160px; margin: 0 auto; }
  section { position: relative; }
  
  /* ══════════════════════════════════════════════
     TYPOGRAPHY HELPERS
  ══════════════════════════════════════════════ */
  .eyebrow {
    font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 20px;
  }
  .s-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 400; line-height: 1.1; margin-bottom: 22px;
  }
  .s-h em { font-style: italic; color: var(--gold-d); }
  .s-p { font-size: 15px; color: var(--muted); line-height: 1.95; margin-bottom: 16px; }
  .gold-rule { width: 48px; height: 1px; background: var(--gold); opacity: .55; margin-bottom: 32px; }
  .gold-rule.center { margin-left: auto; margin-right: auto; }
  .text-center { text-align: center; }
  
  /* ══════════════════════════════════════════════
     BUTTONS
  ══════════════════════════════════════════════ */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-family: 'Jost', sans-serif;
    cursor: pointer; border: none; transition: all .35s; white-space: nowrap;
  }
  .btn-gold {
    padding: 15px 38px; background: var(--gold); color: #fff;
    font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  }
  .btn-gold:hover {
    background: var(--gold-d); transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(181,146,76,.28);
  }
  .btn-outline {
    padding: 14px 32px; background: transparent;
    border: 1px solid var(--border-g); color: var(--gold-d);
    font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  }
  .btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); }
  .btn-dark {
    padding: 15px 38px; background: var(--dark); color: #fff;
    font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  }
  .btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }
  .btn-full { width: 100%; justify-content: center; }
  
  /* ══════════════════════════════════════════════
     SCROLL REVEAL
  ══════════════════════════════════════════════ */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-l { opacity: 0; transform: translateX(-22px); transition: opacity .75s ease, transform .75s ease; }
  .reveal-l.visible { opacity: 1; transform: none; }
  .reveal-r { opacity: 0; transform: translateX(22px); transition: opacity .75s ease, transform .75s ease; }
  .reveal-r.visible { opacity: 1; transform: none; }
  
  /* ══════════════════════════════════════════════
     ANNOUNCEMENT BAR
  ══════════════════════════════════════════════ */
  .announce {
    background: var(--dark); color: rgba(255,255,255,.7);
    text-align: center; padding: 11px 20px;
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  }
  .announce span { color: var(--gold-l); }
  
  /* ══════════════════════════════════════════════
     NAV
  ══════════════════════════════════════════════ */
  nav {
    background: var(--bg); border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 200;
  }
  .nav-inner {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; padding: 18px 4%; gap: 20px;
  }
  .nav-left { display: flex; gap: 28px; list-style: none; }
  .nav-right { display: flex; gap: 28px; list-style: none; justify-content: flex-end; align-items: center; }
  .nav-left a, .nav-right a {
    font-size: 12px; color: var(--muted); text-decoration: none;
    letter-spacing: .08em; transition: color .2s;
  }
  .nav-left a:hover, .nav-right a:hover { color: var(--gold); }
  .nav-logo { text-align: center; }
  .nav-logo strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; letter-spacing: .06em;
    color: var(--dark); display: block;
  }
  .nav-logo em {
    font-family: 'Jost', sans-serif; font-style: normal;
    font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); display: block; margin-top: 2px;
  }
  .nav-cta {
    padding: 9px 22px; background: var(--gold); color: #fff !important;
    font-size: 11px !important; font-weight: 600 !important;
    letter-spacing: .1em !important; text-transform: uppercase;
    transition: all .3s !important;
  }
  .nav-cta:hover { background: var(--gold-d) !important; }
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span { width: 20px; height: 1.5px; background: var(--text); display: block; }
  .mob-menu {
    display: none; position: fixed; inset: 0; background: var(--bg);
    z-index: 300; flex-direction: column; align-items: center;
    justify-content: center; gap: 32px;
  }
  .mob-menu.open { display: flex; }
  .mob-close {
    position: absolute; top: 24px; right: 24px;
    background: none; border: none; font-size: 28px;
    cursor: pointer; color: var(--muted);
  }
  .mob-menu a {
    font-family: 'Cormorant Garamond', serif; font-size: 32px;
    font-weight: 400; color: var(--text); text-decoration: none;
  }
  .mob-menu a:hover { color: var(--gold); }
  
  /* ══════════════════════════════════════════════
     HERO
  ══════════════════════════════════════════════ */
  .hero {
    min-height: 92vh; display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 80px 80px 6%;
    background: var(--bg); position: relative;
  }
  .hero-left::after {
    content: ''; position: absolute; right: 0; top: 12%; bottom: 12%;
    width: 1px; background: linear-gradient(to bottom, transparent, var(--border-g), transparent);
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold-dim); border: 1px solid var(--border-g);
    padding: 8px 16px; margin-bottom: 32px;
    animation: fadeUp .7s .1s both;
  }
  .hero-badge span { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-d); }
  .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
  .hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5.5vw, 78px);
    font-weight: 300; line-height: .97;
    margin-bottom: 28px; animation: fadeUp .7s .2s both;
  }
  .hero-h1 em { font-style: italic; color: var(--gold-d); display: block; }
  .hero-h1 strong { font-weight: 400; display: block; }
  .hero-desc {
    font-size: 15px; color: var(--muted); line-height: 1.9;
    max-width: 420px; margin-bottom: 40px;
    animation: fadeUp .7s .35s both;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .7s .45s both; }
  .hero-credentials {
    margin-top: 48px; padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex; gap: 32px;
    animation: fadeUp .7s .55s both;
  }
  .hc-item { display: flex; flex-direction: column; gap: 3px; }
  .hc-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 400; color: var(--gold); line-height: 1;
  }
  .hc-item span { font-size: 11px; color: var(--dim); letter-spacing: .06em; }
  .hero-right {
    background: var(--bg2);
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
  }
  .hero-img-area {
    flex: 1; display: flex; align-items: center; justify-content: center;
    font-size: 120px; background: linear-gradient(160deg, var(--bg3), var(--bg2));
    position: relative;
  }
  .hero-img-area::before {
    content: ''; position: absolute; inset: 32px;
    border: 1px solid var(--border-g); pointer-events: none; z-index: 1;
  }
  .hero-quote-card {
    background: var(--dark); color: #fff;
    padding: 32px 36px; position: relative;
  }
  .hero-quote-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-style: italic; font-weight: 300;
    line-height: 1.6; color: rgba(255,255,255,.78);
    margin-bottom: 16px;
  }
  .hero-quote-card cite {
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--gold-l); font-style: normal;
  }
  .hero-quote-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px; line-height: 1; color: var(--gold);
    opacity: .3; position: absolute; top: 10px; left: 28px;
  }
  
  /* ══════════════════════════════════════════════
     NUMBERS BAND
  ══════════════════════════════════════════════ */
  .numbers-band {
    background: var(--dark); padding: 48px 0;
    border-top: 1px solid rgba(181,146,76,.15);
    border-bottom: 1px solid rgba(181,146,76,.15);
  }
  .numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .nb-item {
    text-align: center; padding: 20px;
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .nb-item:last-child { border-right: none; }
  .nb-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300; color: var(--gold-l); display: block; line-height: 1;
  }
  .nb-item span { font-size: 11px; color: rgba(255,255,255,.42); letter-spacing: .1em; text-transform: uppercase; margin-top: 8px; display: block; }
  
  /* ══════════════════════════════════════════════
     OBJECTIONS / MEDOS
  ══════════════════════════════════════════════ */
  .objections { padding: 120px 0; background: var(--bg); }
  .objections-header { text-align: center; max-width: 620px; margin: 0 auto 72px; }
  .obj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .obj-card {
    background: var(--bg2); padding: 52px 44px;
    position: relative; overflow: hidden;
    transition: all .35s;
  }
  .obj-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--gold); opacity: 0;
    transition: opacity .35s;
  }
  .obj-card:hover::before { opacity: 1; }
  .obj-card:hover { background: var(--rose); }
  .obj-fear {
    font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--dim); margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
  }
  .obj-fear::before {
    content: ''; width: 24px; height: 1px;
    background: var(--gold); opacity: .5; flex-shrink: 0;
  }
  .obj-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; margin-bottom: 16px; line-height: 1.25;
  }
  .obj-card p { font-size: 14px; color: var(--muted); line-height: 1.85; }
  .obj-card .obj-answer {
    margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border);
    font-size: 13px; color: var(--gold-d); font-weight: 500;
    display: flex; align-items: flex-start; gap: 10px;
  }
  .obj-card .obj-answer::before {
    content: '✓'; background: var(--gold); color: #fff;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; flex-shrink: 0; margin-top: 1px;
  }
  
  /* ══════════════════════════════════════════════
     METODO ILLUMINADA
  ══════════════════════════════════════════════ */
  .metodo { padding: 120px 0; background: var(--dark); color: #fff; }
  .metodo-header { text-align: center; max-width: 640px; margin: 0 auto 80px; }
  .metodo-header .eyebrow { color: var(--gold-l); }
  .metodo-header .s-h { color: #fff; }
  .metodo-header .s-h em { color: var(--gold-l); }
  .metodo-header .s-p { color: rgba(255,255,255,.52); }
  .metodo-badge {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid rgba(181,146,76,.3); padding: 10px 20px;
    margin-bottom: 28px;
  }
  .metodo-badge span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 400; font-style: italic; color: var(--gold-l);
  }
  .metodo-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .metodo-step {
    background: rgba(255,255,255,.04); padding: 44px 32px;
    border-top: 2px solid transparent; transition: all .35s;
    position: relative;
  }
  .metodo-step:hover { background: rgba(255,255,255,.07); border-top-color: var(--gold); }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px; font-weight: 300; color: rgba(181,146,76,.18);
    line-height: 1; margin-bottom: 20px; display: block;
  }
  .metodo-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; color: #fff;
    margin-bottom: 14px; line-height: 1.2;
  }
  .metodo-step p { font-size: 14px; color: rgba(255,255,255,.48); line-height: 1.8; }
  .metodo-cta { text-align: center; margin-top: 72px; }
  .metodo-cta p { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 16px; }
  
  /* ══════════════════════════════════════════════
     PROCEDIMENTOS
  ══════════════════════════════════════════════ */
  .procedimentos { padding: 120px 0; background: var(--bg2); }
  .proc-header { text-align: center; max-width: 600px; margin: 0 auto 72px; }
  .proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .proc-card {
    background: var(--bg); border: 1px solid var(--border);
    padding: 44px 36px; transition: all .4s; position: relative; overflow: hidden;
  }
  .proc-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, var(--gold-d), var(--gold-l));
    transform: scaleX(0); transform-origin: left; transition: transform .4s;
  }
  .proc-card:hover::after { transform: scaleX(1); }
  .proc-card:hover { border-color: var(--border-g); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(26,22,16,.08); }
  .proc-icon { font-size: 28px; margin-bottom: 24px; display: block; }
  .proc-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 400; margin-bottom: 14px;
  }
  .proc-card p { font-size: 13px; color: var(--muted); line-height: 1.8; }
  .proc-card .proc-indication {
    margin-top: 20px; font-size: 11px; color: var(--gold-d);
    letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  }
  
  /* ══════════════════════════════════════════════
     SOBRE / AUTORIDADE
  ══════════════════════════════════════════════ */
  .sobre { padding: 120px 0; background: var(--bg); }
  .sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
  .sobre-img-area {
    position: relative;
    height: 580px;
  }
  .sobre-img-frame {
    width: 100%; height: 100%;
    background: linear-gradient(155deg, var(--bg3), var(--bg2));
    display: flex; align-items: center; justify-content: center;
    font-size: 100px; border: 1px solid var(--border); position: relative;
  }
  .sobre-img-frame::before {
    content: ''; position: absolute; inset: 24px;
    border: 1px solid var(--border-g); pointer-events: none;
  }
  .sobre-tag {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gold); color: #fff; padding: 22px 26px; text-align: center;
  }
  .sobre-tag strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 400; display: block; line-height: 1;
  }
  .sobre-tag span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
  .sobre-crm {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold-dim); border: 1px solid var(--border-g);
    padding: 8px 16px; margin-bottom: 32px;
  }
  .sobre-crm span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-d); font-weight: 600; }
  .sobre-credentials { display: flex; flex-direction: column; gap: 0; margin: 32px 0; }
  .cred-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid var(--border);
  }
  .cred-item:first-child { border-top: 1px solid var(--border); }
  .cred-icon {
    width: 36px; height: 36px; background: var(--gold-dim);
    border: 1px solid var(--border-g); display: flex; align-items: center;
    justify-content: center; font-size: 14px; flex-shrink: 0;
  }
  .cred-item h5 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
  .cred-item p { font-size: 12px; color: var(--muted); line-height: 1.5; }
  .sobre-quote {
    margin-top: 32px; padding: 28px 32px;
    border-left: 3px solid var(--gold); background: var(--bg2);
  }
  .sobre-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-style: italic; font-weight: 400;
    color: var(--dark); line-height: 1.65;
  }
  
  /* ══════════════════════════════════════════════
     DEPOIMENTOS
  ══════════════════════════════════════════════ */
  .depos { padding: 120px 0; background: var(--bg2); }
  .depos-header { text-align: center; max-width: 560px; margin: 0 auto 72px; }
  .depos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .depo-card {
    background: var(--bg); padding: 44px 36px;
    border: 1px solid var(--border); transition: all .35s;
    position: relative;
  }
  .depo-card:hover { border-color: var(--border-g); box-shadow: 0 20px 56px rgba(26,22,16,.07); transform: translateY(-4px); }
  .depo-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 20px; }
  .depo-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-style: italic; font-weight: 400;
    color: var(--text); line-height: 1.75; margin-bottom: 28px;
  }
  .depo-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 20px; border-top: 1px solid var(--border);
  }
  .depo-av {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--gold-dim); border: 1px solid var(--border-g);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
  }
  .depo-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
  .depo-role { font-size: 11px; color: var(--dim); }
  .depo-google {
    position: absolute; top: 20px; right: 20px;
    font-size: 10px; color: var(--dim); letter-spacing: .08em;
    display: flex; align-items: center; gap: 5px;
  }
  
  /* ══════════════════════════════════════════════
     RESULTADOS (antes/depois estratégico)
  ══════════════════════════════════════════════ */
  .resultados { padding: 120px 0; background: var(--bg); }
  .resultados-header { text-align: center; max-width: 580px; margin: 0 auto 72px; }
  .res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .res-card {
    background: var(--bg2); border: 1px solid var(--border);
    overflow: hidden; transition: all .35s;
  }
  .res-card:hover { border-color: var(--border-g); box-shadow: 0 20px 56px rgba(26,22,16,.07); }
  .res-visual {
    height: 220px; background: linear-gradient(135deg, var(--bg3), var(--rose));
    display: flex; align-items: center; justify-content: center; font-size: 56px;
    position: relative;
  }
  .res-tag {
    position: absolute; bottom: 12px; left: 12px;
    background: var(--dark); color: #fff;
    font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
    padding: 5px 12px;
  }
  .res-body { padding: 28px 28px 36px; }
  .res-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; font-weight: 400; margin-bottom: 10px;
  }
  .res-body p { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
  .res-result {
    font-size: 12px; color: var(--gold-d); font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    display: flex; align-items: center; gap: 8px;
  }
  .res-result::before { content: '→'; }
  
  /* ══════════════════════════════════════════════
     CTA BANNER
  ══════════════════════════════════════════════ */
  .cta-banner { padding: 100px 0; background: var(--dark); }
  .cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
  .cta-inner .eyebrow { color: var(--gold-l); }
  .cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 60px); font-weight: 300;
    color: #fff; line-height: 1.1; margin-bottom: 22px;
  }
  .cta-inner h2 em { font-style: italic; color: var(--gold-l); }
  .cta-inner p { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.85; margin-bottom: 44px; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-note { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,.28); letter-spacing: .06em; }
  
  /* ══════════════════════════════════════════════
     FAQ
  ══════════════════════════════════════════════ */
  .faq { padding: 120px 0; background: var(--bg); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0; cursor: pointer; gap: 20px;
    transition: color .2s;
  }
  .faq-question:hover { color: var(--gold-d); }
  .faq-question h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400; line-height: 1.3;
  }
  .faq-toggle {
    width: 28px; height: 28px; border: 1px solid var(--border-g);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px; flex-shrink: 0;
    transition: all .3s;
  }
  .faq-item.open .faq-toggle { background: var(--gold); color: #fff; transform: rotate(45deg); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .45s ease, padding .45s ease;
  }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer p {
    font-size: 14px; color: var(--muted); line-height: 1.9;
    padding-bottom: 22px;
  }
  .faq-aside { position: sticky; top: 120px; }
  .faq-aside-card {
    background: var(--dark); padding: 52px 44px;
    color: #fff;
  }
  .faq-aside-card .eyebrow { color: var(--gold-l); }
  .faq-aside-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-weight: 300; color: #fff;
    margin-bottom: 18px; line-height: 1.2;
  }
  .faq-aside-card h3 em { font-style: italic; color: var(--gold-l); }
  .faq-aside-card p { font-size: 14px; color: rgba(255,255,255,.48); line-height: 1.85; margin-bottom: 32px; }
  .faq-aside-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .faf { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,.65); }
  .faf::before {
    content: '✓'; background: var(--gold); color: #fff;
    width: 18px; height: 18px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px; flex-shrink: 0;
  }
  
  /* ══════════════════════════════════════════════
     CONTATO FOOTER
  ══════════════════════════════════════════════ */
  .contato { padding: 120px 0; background: var(--bg2); }
  .contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contato-info .s-h { margin-bottom: 16px; }
  .info-blocks { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
  .info-blk {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 0; border-bottom: 1px solid var(--border);
  }
  .info-blk:first-child { border-top: 1px solid var(--border); }
  .info-ico {
    width: 38px; height: 38px; background: var(--gold-dim);
    border: 1px solid var(--border-g);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
  }
  .info-blk h5 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
  .info-blk p { font-size: 13px; color: var(--muted); line-height: 1.6; }
  .form-card {
    background: var(--bg); border: 1px solid var(--border);
    padding: 52px 44px; position: relative; overflow: hidden;
  }
  .form-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--gold-d), var(--gold-l), var(--gold-d));
  }
  .form-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400; margin-bottom: 8px;
  }
  .form-card p { font-size: 13px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
  .fld { margin-bottom: 16px; }
  .fld label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
  .fld input, .fld select, .fld textarea {
    width: 100%; background: var(--bg2); border: 1px solid var(--border);
    padding: 13px 16px; color: var(--text); font-family: 'Jost', sans-serif;
    font-size: 14px; outline: none; transition: border-color .25s; appearance: none;
  }
  .fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--gold); }
  .fld input::placeholder, .fld textarea::placeholder { color: var(--dim); }
  .fld textarea { resize: none; min-height: 90px; }
  .fld-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-note { font-size: 11px; color: var(--dim); margin-top: 12px; letter-spacing: .04em; text-align: center; }
  
  /* ══════════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════════ */
  footer { background: var(--dark); padding: 64px 0 28px; }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 52px; }
  .foot-brand .nav-logo { display: block; margin-bottom: 16px; }
  .foot-brand .nav-logo strong { font-size: 20px; color: #fff; }
  .foot-brand .nav-logo em { color: var(--gold-l); }
  .foot-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.75; max-width: 240px; }
  .foot-col h5 { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 18px; }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .foot-col ul a { font-size: 13px; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
  .foot-col ul a:hover { color: var(--gold-l); }
  .foot-col ul li { font-size: 13px; color: rgba(255,255,255,.38); }
  .foot-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  }
  .foot-copy { font-size: 11px; color: rgba(255,255,255,.22); }
  .foot-fp { font-size: 11px; color: rgba(255,255,255,.22); }
  .foot-fp span { color: var(--gold-l); }
  .foot-disclaimer { font-size: 11px; color: rgba(255,255,255,.18); max-width: 480px; line-height: 1.6; margin-top: 16px; }
  
  /* ══════════════════════════════════════════════
     WHATSAPP FLOAT
  ══════════════════════════════════════════════ */
  .wa-float {
    position: fixed; bottom: 32px; right: 32px; z-index: 500;
    width: 56px; height: 56px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(37,211,102,.35);
    text-decoration: none; font-size: 26px;
    animation: fadeUp .7s 1s both;
    transition: transform .3s, box-shadow .3s;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,.45); }
  
  /* ══════════════════════════════════════════════
     KEYFRAMES
  ══════════════════════════════════════════════ */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  @keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.4); } }
  
  /* ══════════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .proc-grid { grid-template-columns: repeat(2, 1fr); }
    .metodo-steps { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  
  @media (max-width: 900px) {
    .nav-left, .nav-right { display: none; }
    .hamburger { display: flex; }
    .nav-inner { grid-template-columns: auto 1fr auto; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 60px 24px; }
    .hero-right { height: 380px; }
    .hero-left::after { display: none; }
    .hero-credentials { flex-wrap: wrap; gap: 20px; }
    .obj-grid { grid-template-columns: 1fr; }
    .sobre-grid { grid-template-columns: 1fr; gap: 52px; }
    .sobre-tag { position: static; display: inline-block; margin-top: 20px; }
    .depos-grid { grid-template-columns: 1fr; }
    .res-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; gap: 48px; }
    .faq-aside { position: static; }
    .contato-grid { grid-template-columns: 1fr; gap: 48px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .nb-item:nth-child(2) { border-right: none; }
    .proc-grid { grid-template-columns: 1fr; }
    .metodo-steps { grid-template-columns: 1fr; }
  }
  
  @media (max-width: 600px) {
    .hero-h1 { font-size: 44px; }
    .hero-btns { flex-direction: column; }
    .btn-gold, .btn-outline, .btn-dark { text-align: center; justify-content: center; }
    .cta-btns { flex-direction: column; align-items: center; }
    .form-card { padding: 28px 20px; }
    .fld-2 { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
    .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .numbers-grid { grid-template-columns: 1fr 1fr; }
  }