/* Base reset (kept explicit here since this file no longer runs inside
   the Artifact host page, which supplied an equivalent reset before) */
[hidden]{ display:none !important; }
img{ max-width:100%; }

/* ============================================================
     TOKENS
     ============================================================ */
  :root{
    --navy-900:#0e2637;
    --navy-800:#123349;
    --navy-700:#1c4a63;
    --navy-600:#2c6284;
    --sage-600:#2f6d5d;
    --sage-700:#255649;
    --sage-100:#e3efe8;
    --sand-50:#f8f5ef;
    --sand-100:#f1ebe0;
    --sand-200:#e9e0d0;
    --line:#e0dccf;
    --line-dark:#294356;
    --white:#ffffff;
    --ink-900:#1c2531;
    --ink-700:#3b4753;
    --ink-600:#586572;
    --ink-400:#8b95a0;
    --gold-400:#c99a4b;

    --font-display:'Fraunces', 'Iowan Old Style', 'Palatino Linotype', serif;
    --font-body:'Public Sans', -apple-system, 'Segoe UI', sans-serif;
    --font-mono:'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

    --shell:1180px;
    --radius-lg:26px;
    --radius-md:18px;
    --radius-sm:12px;

    --shadow-soft:0 20px 45px -25px rgba(14,38,55,0.35);
    --shadow-card:0 1px 2px rgba(14,38,55,0.06), 0 12px 28px -18px rgba(14,38,55,0.18);

    color-scheme: light;
  }

  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion:reduce){
    html{scroll-behavior:auto;}
    *,*::before,*::after{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }

  html{ overflow-x:hidden; }
  body{
    margin:0;
    background:var(--sand-50);
    color:var(--ink-900);
    font-family:var(--font-body);
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }

  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  button{font-family:inherit;}
  ul{list-style:none;margin:0;padding:0;}
  h1,h2,h3,h4,p{margin:0;}
  h1,h2,h3,h4{text-wrap:balance; color:var(--navy-900); font-weight:600;}
  h1,h2{font-family:var(--font-display);}
  h3,h4{font-family:var(--font-body); font-weight:700; letter-spacing:-0.005em;}

  .shell{max-width:var(--shell); margin:0 auto; padding:0 28px;}
  @media (max-width:640px){ .shell{padding:0 20px;} }

  .section{padding:80px 0;}
  @media (max-width:900px){ .section{padding:52px 0;} }
  .bg-sand{background:var(--sand-50);}
  .bg-sand-deep{background:var(--sand-100);}
  .bg-blue-tint{background:linear-gradient(180deg,#eef4f6 0%, #eaf1f5 100%);}
  .bg-white{background:var(--white);}
  .bg-navy{background:var(--navy-900); color:#dce8ee;}
  .bg-navy h2, .bg-navy h3, .bg-navy h4{color:var(--white);}
  .bg-sage{background:var(--sage-100);}

  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-family:var(--font-body); font-weight:600; font-size:12.5px;
    letter-spacing:0.14em; text-transform:uppercase; color:var(--sage-700);
    margin:0 0 16px;
  }
  .bg-navy .eyebrow{color:#8fd6bb;}
  .eyebrow::before{content:""; width:22px; height:1.5px; background:currentColor; display:inline-block; opacity:0.8;}

  h2.headline{font-size:clamp(28px,3.6vw,42px); line-height:1.15; letter-spacing:-0.01em;}
  h3.subhead{font-size:22px; line-height:1.3;}
  p.lede{font-size:18px; line-height:1.65; color:var(--ink-600); max-width:56ch;}
  .bg-navy p.lede{color:#b7c9d3;}

  .section-head{max-width:680px; margin-bottom:40px;}
  .section-head.center{margin-left:auto; margin-right:auto; text-align:center;}

  /* Buttons */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    padding:15px 26px; border-radius:100px; font-weight:600; font-size:15px;
    border:1.5px solid transparent; cursor:pointer; transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    white-space:nowrap;
  }
  .btn:active{transform:translateY(1px);}
  .btn-primary{ background:var(--sage-600); color:#fff; box-shadow:0 14px 26px -14px rgba(47,109,93,0.65); }
  .btn-primary:hover{ background:var(--sage-700); }
  .btn-secondary{ background:transparent; color:var(--navy-900); border-color:var(--navy-900); }
  .btn-secondary:hover{ background:var(--navy-900); color:#fff; }
  .btn-ghost-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,0.5); }
  .btn-ghost-light:hover{ background:rgba(255,255,255,0.12); border-color:#fff; }
  .btn-outline-white{ background:#fff; color:var(--navy-900); }
  .btn-outline-white:hover{ background:#eef3ee; }
  .btn-sm{ padding:12px 20px; font-size:13.5px; }
  .btn svg{ width:18px; height:18px; flex:none; }

  .btn-whatsapp{ background:#2f6d5d; }
  .btn-whatsapp svg{ width:18px;height:18px; }

  /* ============================================================
     HEADER
     ============================================================ */
  header.site{
    position:sticky; top:0; z-index:90;
    background:rgba(248,245,239,0.96);
    border-bottom:1px solid var(--line);
  }
  .header-row{ display:flex; align-items:center; justify-content:space-between; padding:16px 0; gap:20px;}
  .brand{ display:flex; align-items:center; gap:12px; }
  .brand-mark{
    width:44px;height:44px;border-radius:12px;
    background:linear-gradient(155deg, var(--navy-800), var(--sage-700));
    display:flex;align-items:center;justify-content:center;
    color:#fff; font-family:var(--font-display); font-weight:600; font-size:19px;
    flex:none;
  }
  .brand-text{ line-height:1.18; }
  .brand-text strong{ display:block; font-family:var(--font-display); font-size:17.5px; color:var(--navy-900); font-weight:600;}
  .brand-text span{ display:block; font-size:11.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--sage-700); font-weight:600;}

  nav.main-nav{ display:flex; align-items:center; gap:30px; }
  nav.main-nav a{ font-size:14.5px; font-weight:600; color:var(--ink-700); position:relative; padding:4px 0;}
  nav.main-nav a:hover{ color:var(--navy-900); }

  .header-cta{ display:flex; align-items:center; gap:14px; }
  .nav-toggle{ display:none; background:none; border:none; padding:10px; cursor:pointer; }
  .nav-toggle svg{ width:26px; height:26px; color:var(--navy-900); }

  @media (max-width:940px){
    nav.main-nav{
      position:fixed; top:70px; right:-100%; bottom:0; left:auto;
      width:min(320px, 86vw); background:var(--sand-50);
      flex-direction:column; align-items:flex-start; padding:32px 28px; gap:22px;
      transition:right .28s ease; overflow-y:auto;
      box-shadow:-18px 0 40px -22px rgba(14,38,55,0.28);
    }
    nav.main-nav.open{ right:0; }
    nav.main-nav a{ font-size:18px; padding:11px 0; display:block; }
    .nav-toggle{ display:inline-flex; }
    #headerWaBtn{ display:none; }
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero{ position:relative; overflow:hidden; padding:52px 0 64px; }
  .hero-arc{ position:absolute; inset:0; pointer-events:none; z-index:0; }
  .hero-grid{
    position:relative; z-index:1;
    display:grid; grid-template-columns:1.05fr 0.95fr; gap:48px; align-items:center;
  }
  @media (max-width:920px){ .hero-grid{ grid-template-columns:1fr; gap:24px; } }
  @media (max-width:640px){ .hero{ padding:36px 0 36px; } }

  .hero-copy p.lede{ margin:16px 0 26px; }
  @media (max-width:640px){ .hero-copy p.lede{ margin:10px 0 18px; } }
  .hero-actions{ display:flex; flex-wrap:wrap; gap:14px; }

  .hero-photo{ position:relative; }
  .hero-photo-frame{
    position:relative; border-radius:28px; overflow:hidden;
    aspect-ratio:4/4.7; background:linear-gradient(160deg,#173a51 0%, #1c4a63 46%, #2f6d5d 100%);
    box-shadow:var(--shadow-soft);
  }
  .portrait-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 18%; }
  .hero-real-photo{ object-position:50% 22%; }
  .hero-photo-tag{
    position:absolute; left:18px; bottom:-14px; background:#fff; border-radius:13px;
    padding:9px 13px; box-shadow:0 10px 20px -14px rgba(14,38,55,0.3); display:flex; gap:9px; align-items:center;
    max-width:220px;
  }
  .hero-photo-tag .dot{ width:9px;height:9px;border-radius:50%; background:var(--sage-600); flex:none; margin-top:4px;}
  .hero-photo-tag strong{ display:block; font-size:12px; color:var(--navy-900);}
  .hero-photo-tag span{ font-size:11px; color:var(--ink-600);}
  @media (max-width:680px){ .hero-photo-tag{ display:none; } }

  /* ============================================================
     TRUST BAR
     ============================================================ */
  .trust-bar{ background:var(--navy-900); padding:0; }
  .trust-grid{
    display:grid; grid-template-columns:repeat(4,1fr);
    border-top:1px solid var(--line-dark);
  }
  .trust-item{
    padding:26px 24px; border-left:1px solid var(--line-dark);
    display:flex; gap:14px; align-items:flex-start;
  }
  .trust-item:first-child{ border-left:none; }
  .trust-item svg{ width:26px;height:26px; color:#8fd6bb; flex:none; margin-top:2px; }
  .trust-item strong{ display:block; color:#fff; font-size:15px; margin-bottom:4px; font-weight:600;}
  .trust-item span{ font-size:13.5px; color:#a9bcc6; line-height:1.5; }
  @media (max-width:900px){
    .trust-grid{ grid-template-columns:repeat(2,1fr); }
    .trust-item:nth-child(3){ border-left:none; }
  }
  @media (max-width:560px){
    .trust-grid{ grid-template-columns:1fr; }
    .trust-item{ border-left:none !important; border-top:1px solid var(--line-dark); }
    .trust-item:first-child{ border-top:none; }
  }

  /* ============================================================
     ABOUT / CREDIBILIDADE
     ============================================================ */
  .about-grid{ display:grid; grid-template-columns:0.82fr 1.18fr; gap:52px; align-items:center; }
  @media (max-width:920px){ .about-grid{ grid-template-columns:1fr; gap:36px; } }
  .about-visual{
    position:relative; overflow:hidden; border-radius:24px;
    background:linear-gradient(165deg, #173a51 0%, #2f6d5d 130%);
    box-shadow:var(--shadow-card);
    padding:46px 40px; min-height:320px;
    display:flex; flex-direction:column; justify-content:center; gap:20px;
  }
  .about-visual-arc{ position:absolute; inset:0; z-index:0; }
  .about-quote-mark{ position:relative; z-index:1; width:34px; height:26px; }
  .about-visual-quote{
    position:relative; z-index:1; font-family:var(--font-display); font-style:italic;
    font-weight:500; font-size:23px; line-height:1.42; color:#fff; text-wrap:balance; margin:0;
  }
  .about-visual-sign{ position:relative; z-index:1; font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase; color:#8fd6bb; font-weight:700; }

  .about-copy p.lede{ margin:18px 0 30px; }
  .mini-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
  @media (max-width:640px){ .mini-cards{ grid-template-columns:1fr; } }
  .mini-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-sm); padding:20px; }
  .mini-card svg{ width:22px;height:22px; color:var(--sage-600); margin-bottom:12px; }
  .mini-card strong{ display:block; font-size:15px; color:var(--navy-900); margin-bottom:6px; }
  .mini-card span{ font-size:13.5px; color:var(--ink-600); line-height:1.5; }

  /* ============================================================
     DIFERENCIAIS CARDS
     ============================================================ */
  .cards-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  @media (max-width:980px){ .cards-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:520px){ .cards-grid{ grid-template-columns:1fr; } }
  .feature-card{
    background:var(--white); border-radius:var(--radius-md); padding:26px 24px;
    border:1px solid var(--line); transition:box-shadow .2s ease, transform .2s ease;
  }
  .feature-card:hover{ box-shadow:var(--shadow-card); transform:translateY(-3px); }
  .feature-card .icon-badge{
    width:48px;height:48px;border-radius:14px; background:var(--sage-100);
    display:flex;align-items:center;justify-content:center; margin-bottom:18px;
  }
  .feature-card .icon-badge svg{ width:24px;height:24px; color:var(--sage-700); }
  .feature-card h4{ font-size:17px; margin-bottom:8px; }
  .feature-card p{ font-size:14.5px; color:var(--ink-600); line-height:1.6; }

  /* ============================================================
     OBJETIVO SECTION
     ============================================================ */
  .objetivo{ position:relative; overflow:hidden; }
  .objetivo-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:8px;
  }
  @media (max-width:820px){ .objetivo-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:520px){ .objetivo-grid{ grid-template-columns:1fr; } }
  .objetivo-option{
    display:flex; align-items:center; gap:14px; text-align:left;
    background:var(--white); border:1.5px solid var(--line); border-radius:16px;
    padding:20px 20px; cursor:pointer; font-family:inherit; font-size:15.5px; font-weight:600; color:var(--navy-900);
    transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .objetivo-option .emoji{ font-size:24px; flex:none; }
  .objetivo-option:hover{ border-color:var(--sage-600); box-shadow:var(--shadow-card); }
  .objetivo-option[aria-pressed="true"]{ background:var(--sage-100); border-color:var(--sage-600); }
  .objetivo-reveal{
    margin-top:30px; background:var(--white); border:1px solid var(--line); border-radius:20px;
    padding:26px 28px; display:none; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
    box-shadow:var(--shadow-card);
  }
  .objetivo-reveal.show{ display:flex; }
  .objetivo-reveal p{ font-size:15px; color:var(--ink-700); max-width:52ch; }
  .objetivo-reveal strong{ display:block; font-size:12.5px; text-transform:uppercase; letter-spacing:0.08em; color:var(--sage-700); margin-bottom:6px;}

  /* ============================================================
     SOLUÇÕES
     ============================================================ */
  .sol-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
  @media (max-width:760px){ .sol-grid{ grid-template-columns:1fr; } }
  .sol-card{
    background:var(--white); border-radius:var(--radius-lg); padding:30px 28px;
    border:1px solid var(--line); display:flex; flex-direction:column; gap:12px;
    box-shadow:var(--shadow-card); transition:transform .2s ease, box-shadow .2s ease;
  }
  .sol-card:hover{ transform:translateY(-4px); box-shadow:0 22px 40px -22px rgba(14,38,55,0.28); }
  .sol-kicker{ font-size:11.5px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--sage-700); }
  .sol-icon{
    width:56px;height:56px;border-radius:16px; background:var(--navy-900);
    display:flex;align-items:center;justify-content:center;
  }
  .sol-icon svg{ width:28px;height:28px; color:#8fd6bb; }
  .sol-card h3{ font-size:21px; }
  .sol-card p{ font-size:14px; color:var(--ink-600); line-height:1.6; flex:1; }
  .sol-card .btn{ align-self:flex-start; }

  /* ============================================================
     CTA INTERMEDIÁRIO — SOLUÇÕES
     ============================================================ */
  .mid-cta{
    margin-top:32px; background:var(--sage-100); border:1px solid #cfe4d8; border-radius:22px;
    padding:28px 32px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  }
  .mid-cta h3{ font-size:19px; margin-bottom:6px; color:var(--navy-900); }
  .mid-cta p{ font-size:14.5px; color:var(--ink-700); max-width:46ch; }
  .mid-cta .btn{ flex:none; }
  @media (max-width:640px){ .mid-cta{ flex-direction:column; align-items:stretch; } .mid-cta .btn{ width:100%; } }

  /* ============================================================
     COMO FUNCIONA
     ============================================================ */
  .steps-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
  @media (max-width:900px){ .steps-grid{ grid-template-columns:repeat(2,1fr); gap:28px; } }
  @media (max-width:520px){ .steps-grid{ grid-template-columns:1fr; } }
  .step{ padding:0 22px 0 0; position:relative; }
  .step:not(:last-child)::after{
    content:""; position:absolute; top:23px; left:calc(100% - 8px); width:100%; height:1.5px;
    background:repeating-linear-gradient(90deg, var(--line-dark) 0 6px, transparent 6px 12px);
  }
  @media (max-width:900px){ .step:not(:last-child)::after{ display:none; } }
  .step-index{
    width:46px;height:46px;border-radius:50%; background:rgba(143,214,187,0.14); border:1.5px solid #8fd6bb;
    display:flex;align-items:center;justify-content:center; font-family:var(--font-mono); font-size:16px; color:#8fd6bb; font-weight:600;
    margin-bottom:18px;
  }
  .step h4{ color:#fff; font-size:16.5px; margin-bottom:8px; }
  .step p{ font-size:13.5px; color:#a9bcc6; line-height:1.6; }

  /* ============================================================
     CRÉDITO RESPONSÁVEL — MANIFESTO
     ============================================================ */
  .manifesto{ background:var(--sage-700); color:#eaf3ee; position:relative; overflow:hidden;}
  .manifesto .eyebrow{ color:#cfe9db; }
  .manifesto h2{ color:#fff; }
  .manifesto-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:50px; align-items:start; }
  @media (max-width:880px){ .manifesto-grid{ grid-template-columns:1fr; } }
  .manifesto-list{ display:flex; flex-direction:column; gap:22px; }
  .manifesto-item{ display:flex; gap:16px; }
  .manifesto-item svg{ width:22px;height:22px; color:#fff; flex:none; margin-top:2px; }
  .manifesto-item strong{ display:block; font-size:15.5px; color:#fff; margin-bottom:4px; }
  .manifesto-item span{ font-size:14px; color:#d8ece2; line-height:1.6; }

  /* ============================================================
     CALCULADORA
     ============================================================ */
  .calc-wrap{ display:grid; grid-template-columns:0.95fr 1.05fr; gap:50px; align-items:flex-start; }
  @media (max-width:920px){ .calc-wrap{ grid-template-columns:1fr; } }
  .calc-card{
    background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
    padding:34px; box-shadow:var(--shadow-card);
  }
  .field{ margin-bottom:20px; }
  .field label{ display:block; font-size:13px; font-weight:600; color:var(--ink-700); margin-bottom:8px; }
  .field .input-wrap{ position:relative; }
  .field .input-wrap span{ position:absolute; left:16px; top:50%; transform:translateY(-50%); color:var(--ink-400); font-family:var(--font-mono); font-size:15px;}
  .field input{
    width:100%; padding:14px 16px 14px 40px; border-radius:12px; border:1.5px solid var(--line);
    font-family:var(--font-mono); font-size:16px; color:var(--navy-900); background:var(--sand-50);
  }
  .field input:focus{ outline:2px solid var(--sage-600); outline-offset:1px; border-color:var(--sage-600); }
  .calc-result{
    margin-top:24px; padding:22px; border-radius:14px; background:var(--sage-100); display:none;
  }
  .calc-result.show{ display:block; }
  .calc-result .row{ display:flex; justify-content:space-between; align-items:baseline; padding:7px 0; font-size:14.5px; color:var(--ink-700);}
  .calc-result .row strong{ font-family:var(--font-mono); font-size:16px; color:var(--navy-900); font-variant-numeric:tabular-nums; }
  .calc-result .highlight{ border-top:1px dashed #bcd8ca; margin-top:6px; padding-top:14px; }
  .calc-result .highlight strong{ font-size:20px; color:var(--sage-700); }
  .calc-disclaimer{ font-size:12px; color:var(--ink-600); margin-top:16px; line-height:1.6; }

  .calc-side .lede{ margin:18px 0 24px; }
  .calc-points{ display:flex; flex-direction:column; gap:16px; }
  .calc-points li{ display:flex; gap:12px; font-size:14.5px; color:var(--ink-700); }
  .calc-points svg{ width:19px;height:19px; color:var(--sage-600); flex:none; margin-top:2px;}

  /* ============================================================
     SEGURANÇA
     ============================================================ */
  .security{ background:var(--navy-800); color:#dbe6ec; }
  .security .eyebrow{ color:#8fd6bb; }
  .security-head{ display:flex; align-items:flex-start; gap:20px; margin-bottom:44px; }
  .security-head .lock-badge{
    width:58px;height:58px;border-radius:16px; background:rgba(143,214,187,0.14); border:1.5px solid #8fd6bb;
    display:flex;align-items:center;justify-content:center; flex:none;
  }
  .security-head .lock-badge svg{ width:28px;height:28px; color:#8fd6bb; }
  .security-head h2{ color:#fff; font-size:clamp(24px,3vw,32px); }
  .security-head p{ color:#a9bcc6; margin-top:10px; max-width:60ch; font-size:15px; line-height:1.65; }
  .security-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  @media (max-width:820px){ .security-grid{ grid-template-columns:1fr; } }
  .security-card{ background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:16px; padding:26px; }
  .security-card strong{ display:block; color:#fff; font-size:15.5px; margin-bottom:8px; }
  .security-card span{ font-size:13.5px; color:#a9bcc6; line-height:1.6; }
  .security-cta{ margin-top:36px; }

  /* ============================================================
     SOBRE TATIANA
     ============================================================ */
  .tatiana-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:center; }
  @media (max-width:920px){ .tatiana-grid{ grid-template-columns:1fr; } }
  .tatiana-photo-frame{
    border-radius:26px; aspect-ratio:3/3.7; position:relative; overflow:hidden;
    background:linear-gradient(170deg,#12324a 0%, #1c4a63 55%, #2f6d5d 130%);
    box-shadow:var(--shadow-soft);
  }
  .why-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin:22px 0 28px; }
  @media (max-width:560px){ .why-list{ grid-template-columns:1fr; } }
  .why-item{ display:flex; gap:10px; align-items:center; font-size:14.5px; font-weight:600; color:var(--navy-900); }
  .why-item svg{ width:19px;height:19px; color:var(--sage-600); flex:none; }

  /* ============================================================
     CONTEÚDOS
     ============================================================ */
  .content-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  @media (max-width:900px){ .content-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:600px){ .content-grid{ grid-template-columns:1fr; } }
  .article-card{
    background:var(--white); border:1px solid var(--line); border-radius:16px; padding:26px;
    display:flex; flex-direction:column; gap:14px; transition:box-shadow .2s ease, transform .2s ease;
  }
  .article-card:hover{ box-shadow:var(--shadow-card); transform:translateY(-3px); }
  .article-tag{ font-size:11.5px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--sage-700); }
  .article-card h4{ font-size:16.5px; line-height:1.4; }
  .article-card .read-more{ font-size:13.5px; font-weight:600; color:var(--navy-900); display:flex; align-items:center; gap:6px; margin-top:auto; }
  .article-card .read-more svg{ width:15px;height:15px; }

  /* ============================================================
     DEPOIMENTOS
     ============================================================ */
  .testimonials-track{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  @media (max-width:860px){ .testimonials-track{ grid-template-columns:1fr; } }
  .testimonial-card{ background:var(--white); border:1px solid var(--line); border-radius:16px; padding:26px; }
  .testimonial-card .stars{ color:var(--gold-400); letter-spacing:2px; margin-bottom:12px; }
  .testimonial-card p{ font-size:14.5px; color:var(--ink-700); line-height:1.6; margin-bottom:14px; }
  .testimonial-meta{ display:flex; justify-content:space-between; font-size:13px; }
  .testimonial-meta strong{ color:var(--navy-900); }
  .testimonial-meta span{ color:var(--ink-600); }

  /* ============================================================
     PARCEIROS
     ============================================================ */
  .partners-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  @media (max-width:760px){ .partners-grid{ grid-template-columns:1fr; } }
  .partner-card{
    background:var(--white); border:1.5px dashed var(--line); border-radius:16px; padding:26px;
    display:flex; flex-direction:column; gap:10px; align-items:flex-start;
  }
  .partner-logo-slot{
    width:100%; height:56px; border-radius:10px; background:var(--sand-100);
    display:flex; align-items:center; justify-content:center; font-family:var(--font-mono);
    font-size:12px; letter-spacing:0.05em; color:var(--ink-600); font-weight:600;
  }
  .partner-card .fields{ font-size:12.5px; color:var(--ink-600); line-height:1.7; }
  .partners-note{ margin-top:26px; font-size:13px; color:var(--ink-600); background:var(--sand-100); border-radius:12px; padding:16px 18px; }

  /* ============================================================
     FAQ
     ============================================================ */
  .faq-list{ display:flex; flex-direction:column; gap:12px; max-width:820px; }
  .faq-item{ background:var(--white); border:1px solid var(--line); border-radius:14px; overflow:hidden; }
  .faq-q{
    width:100%; text-align:left; background:none; border:none; padding:20px 22px;
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    font-size:15.5px; font-weight:600; color:var(--navy-900); cursor:pointer;
  }
  .faq-q svg{ width:20px;height:20px; color:var(--sage-600); flex:none; transition:transform .2s ease; }
  .faq-item[data-open="true"] .faq-q svg{ transform:rotate(45deg); }
  .faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
  .faq-a-inner{ padding:0 22px 20px; font-size:14.5px; color:var(--ink-600); line-height:1.65; max-width:70ch; }

  /* ============================================================
     CTA FINAL
     ============================================================ */
  .cta-final{
    background:linear-gradient(150deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color:#fff; text-align:center; position:relative; overflow:hidden;
  }
  .cta-final .eyebrow{ color:#8fd6bb; justify-content:center; }
  .cta-final h2{ color:#fff; max-width:760px; margin:0 auto; }
  .cta-final p{ color:#c3d3db; max-width:56ch; margin:18px auto 34px; font-size:16.5px; }
  .cta-final .actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
  .cta-final .fineprint{ margin-top:26px; font-size:12.5px; color:#8fa2af; max-width:60ch; margin-left:auto; margin-right:auto; }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer.site-footer{ background:var(--navy-900); color:#c3d3db; font-size:15px; }
  .footer-block{ padding:44px 0; border-bottom:1px solid var(--line-dark); }
  .footer-block-label{
    font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
    color:#8fd6bb; margin-bottom:22px; display:block;
  }

  /* Bloco 1 — informações da empresa */
  .footer-brand .brand{ margin-bottom:18px; }
  .footer-brand .brand-text strong{ color:#fff; }
  .footer-brand p{ font-size:14.5px; line-height:1.75; color:#c3d3db; max-width:42ch; }

  /* Bloco 2 — links institucionais */
  .footer-grid{ display:grid; grid-template-columns:1fr 1fr 1.1fr; gap:36px; }
  @media (max-width:760px){ .footer-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:480px){ .footer-grid{ grid-template-columns:1fr; } }
  .footer-col h5{ color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:0.07em; margin-bottom:18px; font-weight:700; }
  .footer-col ul{ display:flex; flex-direction:column; gap:13px; }
  .footer-col a{ font-size:14.5px; color:#c3d3db; transition:color .15s ease; }
  .footer-col a:hover{ color:#fff; }
  .footer-col .plain{ font-size:14.5px; color:#c3d3db; line-height:1.7; }

  /* Bloco 3 — instituições parceiras */
  .footer-partners-strip{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; font-size:14px; color:#c3d3db; line-height:1.7; }
  .footer-partners-strip .sep{ opacity:0.4; }
  .footer-partners-strip a{ color:#fff; font-weight:600; }
  .footer-partners-strip a:hover{ color:#8fd6bb; }
  .footer-partners-note{ font-size:14px; color:#c3d3db; line-height:1.7; max-width:65ch; }

  /* Bloco 4 — aviso legal/regulatório */
  .legal-card{
    background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09); border-radius:14px;
    padding:22px 24px; margin-bottom:16px;
  }
  .legal-card:last-child{ margin-bottom:0; }
  .legal-card h6{ margin:0 0 10px; font-size:13.5px; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:0.04em; }
  .legal-card p{ font-size:14px; line-height:1.75; color:#c3d3db; max-width:72ch; margin:0; }
  .legal-card p + p{ margin-top:12px; }
  .footer-registry{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px 30px; font-size:13.5px; color:#c3d3db; }
  @media (max-width:600px){ .footer-registry{ grid-template-columns:1fr; } }
  .footer-registry strong{ color:#fff; }
  .legal-note{ font-size:13px; color:#93a7b2; line-height:1.7; margin-top:16px; }

  /* Bloco 5 — bottom bar */
  .footer-bottom{ padding:22px 0; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; font-size:13px; color:#93a7b2; }
  .footer-bottom .legal-links{ display:flex; gap:18px; flex-wrap:wrap; }
  .footer-bottom .legal-links a{ color:#93a7b2; }
  .footer-bottom .legal-links a:hover{ color:#fff; }

  /* ============================================================
     FLOATING WHATSAPP
     ============================================================ */
  .float-wa{
    position:fixed; right:20px; bottom:calc(20px + env(safe-area-inset-bottom, 0px)); z-index:80;
    width:58px;height:58px;border-radius:50%; background:var(--sage-600); color:#fff;
    display:flex;align-items:center;justify-content:center; box-shadow:0 16px 30px -10px rgba(47,109,93,0.6);
    border:none; cursor:pointer; transition:transform .18s ease;
  }
  .float-wa:hover{ transform:scale(1.06); }
  .float-wa svg{ width:27px;height:27px; }
  @media (max-width:480px){
    .float-wa{ width:52px; height:52px; right:16px; bottom:calc(16px + env(safe-area-inset-bottom, 0px)); }
    .float-wa svg{ width:24px; height:24px; }
    .footer-bottom{ padding-bottom:78px; }
  }

  /* reveal-on-scroll */
  .reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ============================================================
     ACESSIBILIDADE — FOCO VISÍVEL
     ============================================================ */
  a:focus-visible, button:focus-visible, input:focus-visible{
    outline:2.5px solid var(--sage-600); outline-offset:2px; border-radius:6px;
  }
  .float-wa:focus-visible{ outline-color:#fff; outline-offset:3px; }
