  :root{
    --ink:#16302B;
    --ink-2:#1E3A34;
    --cream:#FAF6EE;
    --cream-2:#F3EDE0;
    --gold:#C89B5C;
    --gold-dark:#A67C3D;
    --text-dark:#20302B;
    --text-muted:#5B6B65;
    --text-light:#F5F1E4;
    --text-light-muted:#BFCFC8;
    --line:#DCD2BC;
    --line-dark:#2C4A43;
    --radius:18px;
    --maxw:1180px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Inter',sans-serif;
    color:var(--text-dark);
    background:var(--cream);
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.serif{
    font-family:'Fraunces',serif;
    font-weight:500;
    line-height:1.15;
    margin:0;
    letter-spacing:-0.01em;
  }
  p{margin:0;}
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}
  .eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    font-size:12.5px;letter-spacing:0.14em;text-transform:uppercase;
    color:var(--gold-dark);font-weight:600;margin-bottom:18px;
  }
  .eyebrow::before{
    content:"";width:22px;height:1px;background:var(--gold-dark);display:inline-block;
  }
  section{padding:100px 0;position:relative;}
  .section-dark{background:var(--ink);color:var(--text-light);}
  .section-dark .eyebrow{color:var(--gold);}
  .section-dark .eyebrow::before{background:var(--gold);}

  /* Buttons */
  .btn{
    display:inline-flex;align-items:center;gap:10px;
    padding:16px 30px;border-radius:100px;
    font-weight:600;font-size:15px;
    border:none;cursor:pointer;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn-gold{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#20180B;box-shadow:0 10px 30px -12px rgba(166,124,61,.6);}
  .btn-outline-light{border:1px solid rgba(245,241,228,.4);color:var(--text-light);background:transparent;}
  .btn-outline-light:hover{border-color:var(--gold);}
  .btn small-caption{display:block;}
  .btn-caption{
    display:block;text-align:center;font-size:12.5px;color:var(--text-muted);margin-top:14px;
  }
  .section-dark .btn-caption{color:var(--text-light-muted);}

  /* NAV */
  header.nav{
    position:fixed;top:0;left:0;right:0;z-index:100;
    background:rgba(22,48,43,.92);backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .nav-inner{
    max-width:var(--maxw);margin:0 auto;padding:16px 32px;
    display:flex;align-items:center;justify-content:space-between;
  }
  .logo{display:flex;align-items:center;gap:12px;color:var(--text-light);}
  .logo-mark{
    width:42px;height:42px;border-radius:50%;
    border:1.5px solid var(--gold);
    display:flex;align-items:center;justify-content:center;
    font-family:'Fraunces',serif;font-size:16px;color:var(--gold);
  }
  .logo-text{line-height:1.15;}
  .logo-text .name{font-family:'Fraunces',serif;font-size:16px;letter-spacing:.02em;}
  .logo-text .sub{font-size:9.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--text-light-muted);}
  .nav-links{display:flex;gap:32px;font-size:14px;color:var(--text-light-muted);}
  .nav-links a:hover{color:var(--text-light);}
  .nav-cta{display:none;}
  @media(min-width:920px){.nav-cta{display:inline-flex;}}
  @media(max-width:919px){.nav-links{display:none;}}

  /* HERO */
  .hero{
    background:var(--ink);color:var(--text-light);
    padding:170px 0 90px;
    background-image:radial-gradient(circle at 85% 15%, rgba(200,155,92,.14), transparent 45%);
  }
  .hero-grid{
    display:grid;grid-template-columns:1fr;gap:56px;align-items:center;
  }
  @media(min-width:960px){.hero-grid{grid-template-columns:1.05fr .95fr;}}
  .hero h1{font-size:clamp(34px,4.4vw,54px);font-weight:500;}
  .hero h1 em{font-style:italic;color:var(--gold);font-weight:400;}
  .hero-tag{
    font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:var(--text-light-muted);
    text-align:right;
  }
  .hero-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:36px;}
  .hero-lede{font-size:17px;color:var(--text-light-muted);max-width:480px;margin:22px 0 34px;line-height:1.6;}
  .hero-feats{display:flex;flex-wrap:wrap;gap:26px;margin-bottom:38px;}
  .hero-feat{display:flex;align-items:center;gap:10px;font-size:13.5px;color:var(--text-light-muted);}
  .hero-feat .ic{
    width:34px;height:34px;border-radius:50%;background:rgba(200,155,92,.14);
    display:flex;align-items:center;justify-content:center;color:var(--gold);flex-shrink:0;
  }
  .hero-photo{
    position:relative;border-radius:var(--radius);overflow:hidden;
    aspect-ratio:4/5;
    background:linear-gradient(155deg,#2B4A43,#16302B);
    display:flex;align-items:center;justify-content:center;
    border:1px solid rgba(255,255,255,.08);
  }

  .hero-photo img,
  .benefits-photo img,
  .about-photo img,
  .cta-final-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .photo-placeholder{
    display:flex;flex-direction:column;align-items:center;gap:10px;
    color:rgba(245,241,228,.55);text-align:center;padding:24px;
  }
  .photo-placeholder svg{opacity:.7;}
  .photo-placeholder span{font-size:12px;letter-spacing:.04em;max-width:220px;line-height:1.5;}
  .badge-exp{
    position:absolute;bottom:22px;left:22px;
    background:var(--cream);color:var(--ink);border-radius:14px;
    padding:16px 18px;text-align:center;box-shadow:0 20px 40px -18px rgba(0,0,0,.5);
  }
  .badge-exp .num{font-family:'Fraunces',serif;font-size:26px;color:var(--gold-dark);line-height:1;}
  .badge-exp .lbl{font-size:9.5px;letter-spacing:.1em;text-transform:uppercase;margin-top:6px;color:var(--text-muted);max-width:90px;}

  /* BENEFICIOS */
  .benefits-grid{display:grid;grid-template-columns:1fr;gap:56px;align-items:center;}
  @media(min-width:960px){.benefits-grid{grid-template-columns:1fr 1fr;}}
  .benefits-copy h2{font-size:clamp(28px,3.4vw,38px);color:var(--ink);max-width:480px;}
  .benefits-copy p{color:var(--text-muted);font-size:16px;line-height:1.7;margin:22px 0 34px;max-width:480px;}
  .benefits-copy strong{color:var(--ink);}
  .timeline{display:flex;flex-wrap:wrap;gap:0;margin-bottom:38px;}
  .tl-item{flex:1 1 100px;display:flex;flex-direction:column;align-items:center;text-align:center;gap:12px;position:relative;padding:0 6px;}
  .tl-item:not(:last-child)::after{
    content:"";position:absolute;top:26px;left:64%;width:72%;height:1px;background:var(--line);
  }
  @media(max-width:640px){.tl-item:not(:last-child)::after{display:none;}}
  .tl-ic{
    width:54px;height:54px;border-radius:50%;background:var(--ink);color:var(--gold);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }
  .tl-item span{font-size:12.5px;color:var(--text-muted);max-width:90px;line-height:1.4;}
  .benefits-photo{border-radius:var(--radius);overflow:hidden;aspect-ratio:3/4;
    background:linear-gradient(155deg,#EFE8D6,#E3D9C3);
    display:flex;align-items:center;justify-content:center;}
  .benefits-photo .photo-placeholder{color:rgba(32,48,43,.45);}

  /* CIRURGIAS */
  .section-label-row{display:flex;flex-direction:column;align-items:center;text-align:center;margin-bottom:56px;}
  .section-label-row h2{font-size:clamp(28px,3.4vw,38px);color:var(--ink);}
  .section-label-row p{color:var(--text-muted);margin-top:14px;font-size:16px;max-width:560px;}
  .proc-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;}
  @media(min-width:720px){.proc-grid{grid-template-columns:repeat(3,1fr);}}
  @media(min-width:1000px){.proc-grid{grid-template-columns:repeat(6,1fr);}}
  .proc-card{
    background:#fff;border:1px solid var(--line);border-radius:16px;overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .proc-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px -22px rgba(22,48,43,.3);}
  .proc-img{aspect-ratio:1/1;background:linear-gradient(155deg,var(--cream-2),#E7DFCB);display:flex;align-items:center;justify-content:center;color:var(--gold-dark);}
  .proc-name{padding:14px 12px;font-size:13.5px;font-weight:600;text-align:center;color:var(--ink);}

  /* SOBRE */
  .about-grid{display:grid;grid-template-columns:1fr;gap:56px;align-items:center;}
  @media(min-width:960px){.about-grid{grid-template-columns:.85fr 1.15fr;}}
  .about-photo{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/5;
    background:linear-gradient(155deg,#2B4A43,#16302B);display:flex;align-items:center;justify-content:center;}
  .about-photo .photo-placeholder{color:rgba(245,241,228,.55);}
  .about-copy h2{font-size:clamp(26px,3vw,34px);color:var(--ink);max-width:460px;}
  .about-copy > p{color:var(--text-muted);font-size:16px;line-height:1.7;margin:20px 0 26px;max-width:480px;}
  .about-body{display:grid;grid-template-columns:1fr;gap:34px;}
  @media(min-width:640px){.about-body{grid-template-columns:1.2fr 1fr;}}
  .checklist{display:flex;flex-direction:column;gap:13px;margin-bottom:26px;}
  .checklist li{list-style:none;display:flex;gap:10px;align-items:flex-start;font-size:14.5px;color:var(--text-dark);}
  .checklist li svg{flex-shrink:0;color:var(--gold-dark);margin-top:2px;}
  .quote-script{font-family:'Caveat',cursive;font-size:26px;color:var(--gold-dark);line-height:1.35;}
  .stat-card{background:var(--ink);color:var(--text-light);border-radius:16px;padding:26px;display:flex;flex-direction:column;gap:20px;}
  .stat-row{display:flex;gap:14px;align-items:flex-start;}
  .stat-row .ic{width:36px;height:36px;border-radius:10px;background:rgba(200,155,92,.16);color:var(--gold);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
  .stat-row .n{font-family:'Fraunces',serif;font-size:19px;color:var(--gold);}
  .stat-row .t{font-size:11.5px;letter-spacing:.03em;color:var(--text-light-muted);line-height:1.4;margin-top:2px;}

  /* COMO FUNCIONA */
  .steps-row{display:flex;flex-wrap:wrap;justify-content:center;gap:0;margin:56px 0 46px;}
  .step-item{flex:1 1 140px;max-width:190px;display:flex;flex-direction:column;align-items:center;text-align:center;gap:14px;position:relative;padding:0 10px;}
  .step-item:not(:last-child)::after{
    content:"→";position:absolute;top:18px;right:-4px;color:var(--line-dark);font-size:16px;
  }
  @media(max-width:820px){.step-item:not(:last-child)::after{display:none;}}
  .step-num{
    width:44px;height:44px;border-radius:50%;background:var(--ink);color:var(--gold);
    display:flex;align-items:center;justify-content:center;font-family:'Fraunces',serif;font-size:17px;flex-shrink:0;
  }
  .step-item h3{font-size:14.5px;color:var(--ink);font-family:'Inter',sans-serif;font-weight:600;}
  .step-item p{font-size:12.5px;color:var(--text-muted);line-height:1.5;}
  .center-cta{display:flex;justify-content:center;}

  /* RESULTADOS */
  .test-grid{display:grid;grid-template-columns:1fr;gap:22px;}
  @media(min-width:760px){.test-grid{grid-template-columns:repeat(3,1fr);}}
  .test-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:26px;display:flex;flex-direction:column;gap:16px;}
  .test-stars{color:var(--gold);font-size:14px;letter-spacing:2px;}
  .test-quote{font-size:14.5px;line-height:1.65;color:var(--text-light-muted);flex-grow:1;}
  .test-name{font-size:13.5px;font-weight:600;color:var(--text-light);}
  .test-role{font-size:11.5px;color:var(--text-light-muted);}

  /* FAQ */
  .faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;}
  .faq-item{border-bottom:1px solid var(--line);}
  .faq-q{
    width:100%;text-align:left;background:none;border:none;cursor:pointer;
    padding:22px 4px;display:flex;justify-content:space-between;align-items:center;gap:20px;
    font-family:'Inter',sans-serif;font-size:15.5px;font-weight:600;color:var(--ink);
  }
  .faq-q .plus{
    width:26px;height:26px;border-radius:50%;border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--gold-dark);
    transition:transform .3s ease;font-size:16px;
  }
  .faq-item.open .plus{transform:rotate(45deg);}
  .faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;}
  .faq-a p{padding:0 4px 22px;font-size:14.5px;color:var(--text-muted);line-height:1.7;max-width:640px;}

  /* CTA FINAL */
  .cta-final{
    background:linear-gradient(155deg,#1B3A34,#0F241F);
    color:var(--text-light);
  }
  .cta-final-grid{display:grid;grid-template-columns:1fr;gap:40px;align-items:center;}
  @media(min-width:900px){.cta-final-grid{grid-template-columns:1.1fr .9fr;}}
  .cta-final h2{font-size:clamp(28px,3.6vw,40px);}
  .cta-final p{color:var(--text-light-muted);font-size:16px;margin:18px 0 30px;max-width:440px;}
  .cta-final-photo{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3;
    background:linear-gradient(155deg,#2B4A43,#16302B);display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.08);}
  .cta-final-photo .photo-placeholder{color:rgba(245,241,228,.55);}

  /* FOOTER */
  footer{background:var(--ink);color:var(--text-light-muted);padding:70px 0 30px;}
  .footer-grid{display:grid;grid-template-columns:1fr;gap:44px;margin-bottom:50px;}
  @media(min-width:820px){.footer-grid{grid-template-columns:1.2fr 1fr;}}
  .footer-brand p{margin-top:16px;font-size:14px;line-height:1.7;max-width:280px;}
  .footer-col h4{font-family:'Inter',sans-serif;font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--text-light);margin-bottom:18px;}
  .footer-col div.row{display:flex;align-items:center;gap:10px;font-size:14px;margin-bottom:12px;}
  .footer-col .row svg{color:var(--gold);flex-shrink:0;}
  .cert-badge{display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:14px;margin-top:10px;}
  .cert-badge .ic{width:36px;height:36px;border-radius:50%;background:rgba(200,155,92,.16);color:var(--gold);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
  .cert-badge .t{font-size:12px;color:var(--text-light-muted);line-height:1.5;}
  .footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:26px;display:flex;flex-wrap:wrap;justify-content:space-between;gap:14px;font-size:12.5px;color:var(--text-light-muted);}
  .footer-bottom a:hover{color:var(--text-light);}

  /* Floating WhatsApp */
  .float-wpp{
    position:fixed;bottom:26px;right:26px;z-index:90;
    width:58px;height:58px;border-radius:50%;background:#25D366;color:#fff;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 14px 30px -10px rgba(0,0,0,.4);
    transition:transform .25s ease;
  }
  .float-wpp:hover{transform:scale(1.08);}

  /* reveal animation */
  .reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease, transform .7s ease;}
  .reveal.in{opacity:1;transform:none;}
  @media (prefers-reduced-motion:reduce){
    .reveal{opacity:1;transform:none;transition:none;}
    html{scroll-behavior:auto;}
  }

  :focus-visible{outline:2px solid var(--gold);outline-offset:3px;}

  /* Legal pages (Privacidade / LGPD) */
  .legal-hero{background:var(--ink);color:var(--text-light);padding:150px 0 56px;}
  .legal-hero h1{font-family:'Fraunces',serif;font-weight:500;font-size:clamp(28px,3.6vw,40px);}
  .legal-hero p{color:var(--text-light-muted);margin-top:14px;font-size:15px;max-width:520px;}
  .legal-body{padding:64px 0 110px;}
  .legal-body .wrap{max-width:800px;}
  .back-link{display:inline-flex;align-items:center;gap:8px;font-size:13.5px;color:var(--gold-dark);font-weight:600;margin-bottom:28px;}
  .back-link:hover{text-decoration:underline;}
  .legal-updated{display:block;font-size:13px;color:var(--text-muted);margin-bottom:36px;}
  .legal-body h2{font-family:'Fraunces',serif;font-size:21px;color:var(--ink);margin:38px 0 14px;}
  .legal-body h2:first-of-type{margin-top:0;}
  .legal-body p{font-size:15px;line-height:1.85;color:var(--text-muted);margin-bottom:14px;}
  .legal-body ul{padding-left:20px;margin:0 0 16px;}
  .legal-body li{font-size:15px;line-height:1.85;color:var(--text-muted);margin-bottom:8px;}
  .legal-body strong{color:var(--ink);}
  .legal-body a.inline-link{color:var(--gold-dark);font-weight:600;}
  .legal-note{
    margin-top:44px;padding:18px 20px;border-radius:12px;
    background:var(--cream-2);border:1px solid var(--line);
    font-size:13px;color:var(--text-muted);line-height:1.7;
  }
