:root{
  --white:#FFFFFF;
  --yellow:#FFC800;
  --dark:#42454A;
  --black:#000000;
  --soft:#F6F7F9;
  --soft-2:#ECEEF2;
  --text:#222831;
  --muted:#6B7078;
  --border:rgba(66,69,74,.16);
  --shadow:0 24px 70px rgba(0,0,0,.08);
  --shadow-soft:0 16px 45px rgba(0,0,0,.06);
  --radius:22px;
  --font-body:'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-title:'Playfair Display', Georgia, serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.topbar__inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.02em;
}
.brand__mark{
  width:48px;
  height:34px;
  display:grid;
  place-items:center;
  color:var(--black);
  background:var(--yellow);
  border-radius:10px;
  font-size:.85rem;
  box-shadow:0 10px 25px rgba(255,200,0,.25);
}
.brand__text{
  font-size:.88rem;
  color:var(--dark);
  text-transform:uppercase;
  letter-spacing:.09em;
}
.nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:.92rem;
  font-weight:600;
  color:var(--dark);
}
.nav a:not(.nav__cta){opacity:.84}
.nav a:hover{opacity:1}
.nav__cta{
  padding:12px 18px;
  background:var(--dark);
  color:var(--white);
  border-radius:999px;
  transition:.25s ease;
}
.nav__cta:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(66,69,74,.22)}
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--border);
  background:var(--white);
  border-radius:12px;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  margin:4px auto;
  background:var(--dark);
  transition:.25s ease;
}

.hero{
  position:relative;
  padding:96px 0 86px;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(255,200,0,.18), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(66,69,74,.04) 1px, transparent 1px),linear-gradient(90deg, rgba(66,69,74,.04) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom, black, transparent 80%);
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:60px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  color:var(--dark);
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.eyebrow:before{
  content:"";
  width:34px;
  height:3px;
  background:var(--yellow);
  border-radius:99px;
}
.eyebrow--dark{color:var(--white)}
.hero h1,
.section__head h2,
.case-study h2,
.comparison__head h2,
.authority h2,
.final-cta h2{
  margin:0;
  font-family:var(--font-title);
  line-height:1.05;
  letter-spacing:-.03em;
  color:#25282C;
}
.hero h1{
  font-size:clamp(2.7rem, 6vw, 5.45rem);
  max-width:860px;
}
.hero__subtitle{
  max-width:720px;
  margin:26px 0 0;
  font-size:1.13rem;
  color:#555B63;
}
.hero__actions{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:34px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:48px;
  padding:14px 22px;
  border-radius:999px;
  font-size:.94rem;
  font-weight:800;
  transition:.25s ease;
  border:1px solid transparent;
}
.btn--primary{
  background:var(--yellow);
  color:var(--black);
  box-shadow:0 15px 35px rgba(255,200,0,.22);
}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 20px 45px rgba(255,200,0,.34)}
.btn--ghost{
  background:rgba(255,255,255,.7);
  border-color:var(--border);
  color:var(--dark);
}
.btn--ghost:hover{background:#fff;transform:translateY(-2px)}
.btn--large{min-height:58px;padding:18px 30px;font-size:1rem}
.microcopy{margin:14px 0 0;color:var(--muted);font-size:.92rem}

.hero__visual{position:relative}
.visual-card{
  position:relative;
  min-height:540px;
  padding:22px;
  border-radius:32px;
  background:linear-gradient(145deg, #474A50, #25272B);
  box-shadow:0 35px 85px rgba(0,0,0,.22);
  overflow:hidden;
}
.visual-card:before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-80px;
  top:-60px;
  background:radial-gradient(circle, rgba(255,200,0,.30), transparent 68%);
}
.visual-card__top{
  display:flex;
  gap:8px;
  position:relative;
  z-index:2;
}
.visual-card__top span{
  width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.38)
}
.evidence-panel,
.document-preview,
.seal{position:relative;z-index:2}
.evidence-panel{
  margin-top:34px;
  display:grid;
  gap:12px;
}
.evidence-line{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:16px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.06);
  border-radius:16px;
  color:var(--white);
}
.evidence-line span{color:rgba(255,255,255,.66);font-size:.88rem}
.document-preview{
  margin-top:26px;
  padding:28px;
  min-height:230px;
  background:rgba(255,255,255,.94);
  border-radius:22px;
  box-shadow:0 25px 60px rgba(0,0,0,.2);
}
.doc-bar{width:120px;height:12px;background:var(--yellow);border-radius:99px;margin-bottom:24px}
.doc-line{height:9px;background:#D9DCE1;border-radius:99px;margin:13px 0;width:78%}
.doc-line.long{width:100%}
.doc-line.short{width:46%}
.highlight-box{
  margin-top:30px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid rgba(255,200,0,.55);
  background:rgba(255,200,0,.11);
  border-radius:14px;
}
.highlight-box span{width:12px;height:12px;background:var(--yellow);border-radius:50%}
.highlight-box p{margin:0;font-size:.88rem;font-weight:700;color:var(--dark)}
.seal{
  position:absolute;
  right:28px;
  bottom:28px;
  width:126px;
  height:126px;
  display:grid;
  place-items:center;
  text-align:center;
  border-radius:50%;
  color:var(--black);
  background:var(--yellow);
  box-shadow:0 22px 50px rgba(255,200,0,.25);
}
.seal span{display:block;font-size:.72rem;text-transform:uppercase;letter-spacing:.12em}
.seal strong{display:block;font-size:1.25rem}

.section{padding:96px 0}
.section--white{background:var(--white)}
.section--soft{background:var(--soft)}
.section--dark{
  background:linear-gradient(135deg, #2B2E33, var(--dark));
  color:var(--white);
}
.section__head{
  max-width:780px;
  margin-bottom:42px;
}
.section__head h2,
.case-study h2,
.comparison__head h2,
.authority h2,
.final-cta h2{font-size:clamp(2rem, 4vw, 3.7rem)}
.section__head p{
  margin:18px 0 0;
  color:var(--muted);
  font-size:1.04rem;
}
.cards-grid{
  display:grid;
  gap:22px;
}
.cards-grid.six{grid-template-columns:repeat(3, 1fr)}
.card{
  position:relative;
  padding:30px;
  min-height:228px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 1px 0 rgba(0,0,0,.02);
  transition:.25s ease;
}
.card:after{
  content:"";
  position:absolute;
  left:30px;
  right:30px;
  bottom:0;
  height:3px;
  background:var(--yellow);
  transform:scaleX(0);
  transform-origin:left;
  transition:.25s ease;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-soft);
}
.card:hover:after{transform:scaleX(1)}
.icon{
  display:grid;
  place-items:center;
  width:46px;height:46px;
  margin-bottom:24px;
  border-radius:14px;
  background:rgba(255,200,0,.18);
  color:var(--dark);
  font-weight:900;
}
.card h3{margin:0 0 12px;font-size:1.08rem;color:#292C31}
.card p{margin:0;color:var(--muted);font-size:.95rem}

.timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--border);
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.timeline__item{
  position:relative;
  padding:32px 26px;
  border-right:1px solid var(--border);
}
.timeline__item:last-child{border-right:0}
.timeline__item span{
  display:inline-flex;
  margin-bottom:34px;
  color:var(--yellow);
  font-size:.86rem;
  font-weight:900;
}
.timeline__item strong{display:block;margin-bottom:12px;color:#2B2E33}
.timeline__item p{margin:0;color:var(--muted);font-size:.93rem}

.case-study{
  padding:54px;
  border:1px solid var(--border);
  border-radius:34px;
  background:
    linear-gradient(90deg, rgba(255,200,0,.08), transparent 28%),
    #fff;
  box-shadow:var(--shadow);
}
.case-study__label{
  display:inline-flex;
  margin-bottom:16px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,200,0,.16);
  color:var(--dark);
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.case-study p{
  max-width:900px;
  color:#545960;
  font-size:1.03rem;
}
blockquote{
  margin:30px 0 0;
  padding:24px 28px;
  border-left:4px solid var(--yellow);
  background:var(--soft);
  border-radius:0 18px 18px 0;
  font-family:var(--font-title);
  font-size:1.45rem;
  line-height:1.22;
  color:#2E3136;
}
.case-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:38px;
  gap:14px;
}
.case-flow div{
  padding:20px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:18px;
}
.case-flow span{
  display:inline-grid;
  place-items:center;
  width:32px;height:32px;
  margin-bottom:12px;
  border-radius:10px;
  background:var(--dark);
  color:#fff;
  font-weight:800;
}
.case-flow strong{display:block}
.case-flow small{color:var(--muted)}

.scope-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.scope-item{
  min-height:86px;
  display:flex;
  align-items:center;
  padding:22px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  font-weight:700;
  color:#30343A;
  box-shadow:0 10px 25px rgba(0,0,0,.025);
}
.scope-item:before{
  content:"";
  width:10px;height:10px;
  margin-right:14px;
  border-radius:50%;
  background:var(--yellow);
  flex:0 0 auto;
}

.comparison{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:40px;
  align-items:start;
}
.comparison__head{position:sticky;top:110px}
.comparison__grid{display:grid;grid-template-columns:1fr;gap:22px}
.compare-card{
  padding:34px;
  border-radius:28px;
  border:1px solid var(--border);
}
.compare-card h3{margin:0 0 24px;font-size:1.4rem}
.compare-card ul{list-style:none;margin:0;padding:0;display:grid;gap:14px}
.compare-card li{display:flex;gap:12px;color:#555B63}
.compare-card li:before{content:"";width:9px;height:9px;margin-top:8px;border-radius:50%;background:#B8BDC5;flex:0 0 auto}
.compare-card--featured{
  background:linear-gradient(135deg, #42454A, #292C31);
  color:#fff;
  box-shadow:0 25px 70px rgba(66,69,74,.22);
}
.compare-card--featured h3{color:#fff}
.compare-card--featured li{color:rgba(255,255,255,.82)}
.compare-card--featured li:before{background:var(--yellow)}
.compare-card--plain{background:#fff}

.authority{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:52px;
  align-items:center;
}
.photo-placeholder{
  min-height:420px;
  display:grid;
  place-items:center;
  text-align:center;
  border:1px solid rgba(255,255,255,.16);
  border-radius:30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    radial-gradient(circle at 50% 30%, rgba(255,200,0,.15), transparent 35%);
}
.photo-placeholder span{
  display:block;
  font-family:var(--font-title);
  font-size:2rem;
}
.photo-placeholder small{display:block;margin-top:8px;color:rgba(255,255,255,.7)}
.authority h2{color:#fff}
.authority p{color:rgba(255,255,255,.76);font-size:1.04rem}
.authority__tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.authority__tags span{
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.05);
  font-size:.9rem;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.step{
  position:relative;
  padding:30px 24px;
  border:1px solid var(--border);
  border-radius:24px;
  background:#fff;
  min-height:260px;
}
.step:not(:last-child):after{
  content:"→";
  position:absolute;
  right:-19px;
  top:50%;
  transform:translateY(-50%);
  width:36px;height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--yellow);
  color:#000;
  z-index:2;
  font-weight:900;
}
.step span{color:var(--yellow);font-weight:900}
.step h3{margin:24px 0 12px;color:#2D3035}
.step p{margin:0;color:var(--muted);font-size:.94rem}

.final-cta{
  padding:108px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,200,0,.22), transparent 30%),
    linear-gradient(135deg, #24262A, var(--dark));
  color:#fff;
  text-align:center;
}
.final-cta__inner{max-width:900px}
.final-cta h2{color:#fff}
.final-cta p{max-width:650px;margin:22px auto 34px;color:rgba(255,255,255,.76);font-size:1.1rem}

.faq__list{
  max-width:880px;
  display:grid;
  gap:14px;
}
details{
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.025);
}
summary{
  padding:22px 24px;
  cursor:pointer;
  font-weight:800;
  color:#2D3035;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
summary:after{
  content:"+";
  float:right;
  font-weight:900;
  color:var(--yellow);
}
details[open] summary:after{content:"–"}
details p{
  margin:0;
  padding:0 24px 24px;
  color:var(--muted);
}

.footer{
  padding:54px 0 24px;
  background:#202226;
  color:#fff;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  padding-bottom:38px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.brand--footer .brand__text{color:#fff}
.footer p{color:rgba(255,255,255,.68);margin:10px 0}
.footer a{color:#fff}
.footer h4{margin:0 0 14px;color:#fff}
.footer__bottom{
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.52);
  font-size:.85rem;
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  display:none;
  padding:13px 18px;
  border-radius:999px;
  background:var(--yellow);
  color:#000;
  font-weight:900;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}



.profile-photo{
  width:100%;
  min-height:420px;
  max-height:520px;
  object-fit:cover;
  object-position:center top;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 30px 70px rgba(0,0,0,.24);
}

@media (max-width: 980px){
  .container{width:min(100% - 28px, 1120px)}
  .menu-toggle{display:block}
  .nav{
    position:absolute;
    left:14px;
    right:14px;
    top:82px;
    display:grid;
    gap:0;
    padding:12px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:var(--shadow-soft);
    transform:translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
  }
  .nav.is-open{
    transform:none;
    opacity:1;
    pointer-events:auto;
  }
  .nav a{
    padding:14px;
    border-radius:12px;
  }
  .nav__cta{text-align:center;margin-top:8px}
  .hero{padding:62px 0 72px}
  .hero__grid,
  .comparison,
  .authority{
    grid-template-columns:1fr;
  }
  .comparison__head{position:static}
  .hero__visual{order:-1}
  .visual-card{min-height:430px}
  .cards-grid.six,
  .scope-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .timeline,
  .steps,
  .case-flow{
    grid-template-columns:1fr 1fr;
  }
  .timeline__item{border-right:0;border-bottom:1px solid var(--border)}
  .timeline__item:nth-last-child(-n+2){border-bottom:0}
  .step:not(:last-child):after{display:none}
  .footer__grid{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column}
}

@media (max-width: 640px){
  .brand__text{display:none}
  .topbar__inner{min-height:68px}
  .hero h1{font-size:2.55rem}
  .hero__subtitle{font-size:1rem}
  .hero__actions .btn{width:100%}
  .section{padding:68px 0}
  .cards-grid.six,
  .scope-grid,
  .timeline,
  .steps,
  .case-flow{
    grid-template-columns:1fr;
  }
  .card,.case-study,.compare-card{padding:24px}
  blockquote{font-size:1.22rem}
  .visual-card{min-height:390px;padding:16px;border-radius:24px}
  .document-preview{padding:20px}
  .seal{width:96px;height:96px;right:18px;bottom:18px}
  .seal strong{font-size:1rem}
  .evidence-line{display:grid}
  .authority__photo{display:none}
  .whatsapp-float{display:inline-flex}
}


.hero-image{
  width:100%;
  border-radius:32px;
  box-shadow:0 35px 90px rgba(0,0,0,.22);
  object-fit:cover;
  border:1px solid rgba(255,255,255,.08);
}

.hero__visual{
  display:flex;
  align-items:center;
  justify-content:center;
}


.intro-points{
  padding:70px 0;
  background:#FFFFFF;
  border-top:1px solid rgba(66,69,74,.10);
  border-bottom:1px solid rgba(66,69,74,.10);
}

.intro-points__content{
  max-width:900px;
}

.intro-points p{
  margin:0 0 36px;
  font-family:'Playfair Display', serif;
  font-size:1.45rem;
  line-height:1.8;
  color:#6E6464;
  font-style:italic;
}

.intro-points ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:18px;
}

.intro-points li{
  position:relative;
  padding-left:24px;
  font-size:1.45rem;
  letter-spacing:.10em;
  color:#4B5563;
  font-weight:400;
}

.intro-points li:before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#FFC800;
  font-size:1.6rem;
  line-height:1;
}

@media (max-width: 640px){

  .intro-points{
    padding:52px 0;
  }

  .intro-points p{
    font-size:1.08rem;
    line-height:1.7;
  }

  .intro-points li{
    font-size:1rem;
    letter-spacing:.06em;
  }
}


.authority__content p + p{
  margin-top:14px;
}


/* ===== AJUSTE HERO TITLE ===== */

.hero__content{
  max-width:760px;
}

.hero h1{
  max-width:980px !important;
  width:100%;
  font-size:clamp(2.5rem, 5vw, 5rem) !important;
  line-height:.94 !important;
  letter-spacing:-0.045em !important;
  font-family:'Playfair Display', serif !important;
  font-weight:700 !important;
  color:#26282D !important;
}

@media (min-width: 1200px){

  .hero__grid{
    grid-template-columns:1.18fr .82fr !important;
    gap:80px !important;
  }

  .hero h1{
    font-size:5.4rem !important;
    max-width:1100px !important;
  }
}

@media (max-width: 768px){

  .hero h1{
    font-size:4rem !important;
    line-height:.96 !important;
    max-width:100% !important;
  }

  .hero__content{
    max-width:100%;
  }
}

@media (max-width: 540px){

  .hero h1{
    font-size:3.55rem !important;
    line-height:.96 !important;
    letter-spacing:-0.05em !important;
  }
}


/* ===== CORREÇÃO MOBILE — FOTO NA SEÇÃO AUTORIDADE ===== */

@media (max-width: 640px){

  .authority{
    grid-template-columns:1fr !important;
    gap:34px !important;
  }

  .authority__photo{
    display:block !important;
    order:-1;
  }

  .profile-photo{
    display:block !important;
    width:100% !important;
    min-height:0 !important;
    max-height:none !important;
    height:auto !important;
    object-fit:cover !important;
    object-position:center top !important;
    border-radius:24px !important;
    margin-bottom:8px;
  }
}
