/* ============================================================
   Mangaba.AI — folha de estilo
   ============================================================ */

:root{
  --ink:        #382B22;              /* títulos */
  --body:       #1E0D01;              /* texto corrido */
  --muted:      rgba(30,13,1,.6);     /* texto secundário */
  --grey:       #666666;              /* frase grande "Como Trabalhamos" */
  --accent:     #ED9751;              /* kicker das colunas */
  --accent-2:   #BD7440;              /* eyebrow das seções */
  --accent-3:   #E8A166;              /* label dos cards */
  --domain:     #A18B70;              /* domínio nos cards */
  --card:       #FAF7F5;
  --faq:        #FAF5F2;
  --container:  1136px;

  --btn-rim:    #C25B11;
  --btn-a:      #FF9C24;
  --btn-b:      #EDC580;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top:120px; -webkit-text-size-adjust:100%; }

body{
  margin:0;
  font-family:"Open Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight:400;
  color:var(--body);
  background:#F3F3F3;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

[hidden]{ display:none !important; }
img{ max-width:100%; display:block; }
p{ margin:0; }
h1,h2,h3,h4{ margin:0; font-weight:500; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; padding:0; cursor:pointer; }

.page{
  position:relative;
  overflow-x:clip;
  background:linear-gradient(#E6E6E6 0%, #F3F3F3 6%);
}

.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
}

/* ─────────────── Eyebrow / chip de seção ─────────────── */

.eyebrow{
  display:inline-flex;
  align-items:center;
  padding:6px 16px;
  border-radius:100px;
  background:rgba(255,255,255,.55);
  box-shadow:inset 0 0 0 1px rgba(189,116,64,.14);
  font-size:16px;
  font-weight:500;
  line-height:1.7;
  color:var(--accent-2);
}

/* ============================================================
   Botão gradiente (3 camadas, como no original)
   ============================================================ */

.btn{
  display:inline-flex;
  padding:1px;
  border-radius:100px;
  flex:none;
  -webkit-tap-highlight-color:transparent;
}
.btn-l1{
  display:flex;
  align-items:center;
  height:44px;
  padding:1px 1px 2px;
  border-radius:100px;
  background:linear-gradient(0deg, var(--btn-rim) 0%, rgba(194,91,17,0) 80%);
  box-shadow:0 13px 30px rgba(112,104,99,.15);
  overflow:clip;
  transition:box-shadow .3s ease, transform .3s ease;
}
.btn-l2{
  display:flex;
  align-items:center;
  gap:8.62px;
  height:41px;
  padding:0 7px 0 14px;
  border-radius:100px;
  background:linear-gradient(var(--btn-a) 0%, var(--btn-b) 100%);
  overflow:clip;
}
.btn-label{
  position:relative;
  display:block;
  height:18px;
  overflow:hidden;
}
.btn-label span{
  display:block;
  height:18px;
  font-size:14px;
  font-weight:600;
  line-height:18px;
  color:#FFF8F5;
  white-space:nowrap;
  transition:transform .34s cubic-bezier(.4,0,.2,1);
}
.btn:hover .btn-label span{ transform:translateY(-18px); }
.btn:hover .btn-l1{ box-shadow:0 16px 34px rgba(112,104,99,.24); }
.btn:active .btn-l1{ transform:translateY(1px); }

.btn-dot{
  display:flex;
  flex:none;
  width:24px; height:24px;
  padding:1px;
  border-radius:50%;
  background:linear-gradient(rgba(156,122,98,0) 0%, #FFDAC2 100%);
  box-shadow:0 .56px .45px -.63px rgba(115,52,7,.46), 0 1.6px 1.3px -1.25px rgba(115,52,7,.4);
}
.btn-dot-in{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%; height:100%;
  border-radius:50%;
  background:linear-gradient(#FFF8F5 0%, #FFF4ED 100%);
  color:#402B22;
  overflow:hidden;
}
.btn-dot-in svg{ width:14px; height:14px; transition:transform .3s ease; }
.btn:hover .btn-dot-in svg{ transform:translateX(1.5px); }

/* variante pequena — "Acessar" */
.btn--sm .btn-l1{ height:28px; }
.btn--sm .btn-l2{ height:26px; padding:0 6px 0 10px; gap:8px; }
.btn--sm .btn-label,
.btn--sm .btn-label span{ height:17px; font-size:13px; line-height:17px; }
.btn--sm:hover .btn-label span{ transform:translateY(-17px); }
.btn--sm .btn-dot{ width:22px; height:22px; }
.btn--sm .btn-dot-in svg{ width:12px; height:12px; }

.btn.is-disabled{ pointer-events:none; filter:saturate(.25) opacity(.55); }

/* ============================================================
   NAV
   ============================================================ */

.nav-sticky{
  position:sticky;
  top:0;
  z-index:50;
}
.nav{
  padding:24px 30px;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  width:100%;
  max-width:1160px;
  height:80px;
  margin-inline:auto;
}
.nav-logo img{ width:164px; height:31px; object-fit:contain; }

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}
.nav-links p{ font-size:16px; font-weight:500; line-height:24px; }
.nav-links a{
  color:var(--body);
  transition:color .2s ease;
}
.nav-links a:hover{ color:var(--accent-2); }

.nav-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
  width:80px; height:80px;
  color:var(--accent);
  transition:color .25s ease;
}
.nav-toggle:hover{ color:var(--btn-rim); }

/* "❚❚" — visível enquanto a trilha toca */
.nav-toggle-bars{ display:flex; gap:4px; }
.nav-toggle-bars span{
  display:block;
  width:4px; height:16px;
  border-radius:2px;
  background:currentColor;
}
/* "▶" — visível enquanto está pausada */
.nav-toggle-play{
  display:none;
  width:0; height:0;
  margin-left:3px;
  border-left:12px solid currentColor;
  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
}
.nav-toggle[aria-pressed="false"] .nav-toggle-bars{ display:none; }
.nav-toggle[aria-pressed="false"] .nav-toggle-play{ display:block; }

/* enquanto toca, as barras pulsam de leve — como no original */
.nav-toggle[aria-pressed="true"] .nav-toggle-bars span{
  animation:barPulse 1.1s ease-in-out infinite alternate;
}
.nav-toggle[aria-pressed="true"] .nav-toggle-bars span:last-child{ animation-delay:.35s; }
@keyframes barPulse{ from{ height:11px; } to{ height:16px; } }

.nav-burger{ display:none; width:44px; height:44px; flex-direction:column; align-items:center; justify-content:center; gap:5px; }
.nav-burger span{ display:block; width:20px; height:2px; border-radius:2px; background:var(--ink); transition:transform .25s ease, opacity .2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.nav-mobile{
  display:flex;
  flex-direction:column;
  gap:2px;
  max-width:1160px;
  margin:8px auto 0;
  padding:10px;
  border-radius:16px;
  background:rgba(255,255,255,.82);
  box-shadow:0 18px 40px rgba(112,104,99,.14);
}
.nav-mobile a{ padding:12px 14px; border-radius:10px; font-size:16px; font-weight:500; }
.nav-mobile a:hover{ background:var(--card); }

/* ============================================================
   HERO
   ============================================================ */

.hero{
  position:relative;
  padding:140px 0 552px;
}

.hero-dots{
  position:absolute;
  top:-96px;
  left:-51px;
  right:-51px;
  height:588px;
  background-image:url("assets/marquee.jpg");
  background-size:908px 460px;   /* mesma escala de ponto do original (fonte 5438x2758 em cover 512x460) */
  background-repeat:repeat;
  opacity:.55;
  -webkit-mask-image:radial-gradient(137% 70% at 52.3% 77.8%, rgba(0,0,0,0) 0%, #000 100%);
          mask-image:radial-gradient(137% 70% at 52.3% 77.8%, rgba(0,0,0,0) 0%, #000 100%);
  animation:dotsDrift 60s linear infinite;
  pointer-events:none;
}
@keyframes dotsDrift{ to{ background-position:-908px 0; } }
.anim-paused .hero-dots{ animation-play-state:paused; }

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1200px;
  margin-inline:auto;
  padding-inline:24px;
}
.hero-copy{
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:660px;
}

.hero-badges{
  display:flex;
  align-items:center;
  gap:16px;
  height:36px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:12px;
  height:36px;
  padding:4px 16px 4px 4px;
  border-radius:100px;
  background:#FFFBF7;
}
.chip-tag{
  display:inline-flex;
  align-items:center;
  padding:2px 12px;
  border-radius:100px;
  background:linear-gradient(299deg, #EB6A00 11%, #FFC766 100%);
  font-size:12px;
  font-weight:400;
  line-height:24px;
  color:#FFF8F5;
}
.chip-text{ font-size:16px; font-weight:400; letter-spacing:-.3px; line-height:24px; color:#664C2C; }

.hero-flag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:400;
  line-height:20px;
  letter-spacing:-.3px;
  color:#664C2C;
}
.hero-flag img{ width:17px; height:17px; object-fit:contain; }

.hero-title{
  margin:0;
  max-width:660px;
  font-size:60px;
  font-weight:500;
  line-height:60px;
  letter-spacing:-3.5px;
  color:var(--ink);
}
.hero-title .w{
  display:inline-block;
  opacity:0;
  transform:translateY(.42em);
  animation:wordUp .8s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay:var(--wd, 0s);
}
@keyframes wordUp{ to{ opacity:1; transform:none; } }

.hero-bottom{
  display:flex;
  align-items:flex-end;
  gap:40px;
}
.hero-lede{
  width:400px;
  max-width:100%;
  font-size:16px;
  font-weight:500;
  line-height:24px;
  color:var(--body);
}

/* Ancorada na base do hero e escalando junto: no original a arte tem
   1493x799 e vaza 135px abaixo da seção — 135/799 = 16.9% da própria altura. */
.hero-art{
  position:absolute;
  left:50%;
  bottom:0;
  width:calc(100% + 54px);
  aspect-ratio:1493 / 799;
  transform:translate(-50%, 16.9%);
  z-index:1;
  pointer-events:none;
}
.hero-art img{ width:100%; height:100%; object-fit:cover; object-position:50% 50%; }

/* ============================================================
   SOBRE
   ============================================================ */

.sobre{ padding:84px 30px 86px; }

.sobre-head{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
  margin-bottom:16px;
}
.sobre-art{
  width:179px;
  height:140px;
  object-fit:contain;
  pointer-events:none;
}

.sobre-statement{
  max-width:986px;
  margin:0 auto;
  font-size:32px;
  font-weight:400;
  line-height:44px;
  letter-spacing:-.03px;
  text-align:center;
  color:var(--grey);
}
.sobre-statement .w{
  display:inline-block;
  color:rgba(102,102,102,.18);
  transition:color .35s ease;
}
.sobre-statement .w.on{ color:var(--grey); }

.pillars{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:8px;
  max-width:986px;
  margin:48px auto 0;
}
.pillar{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding-right:24px;
}
.pillar-kicker{
  font-size:13px;
  font-weight:400;
  line-height:18.2px;
  letter-spacing:-.3px;
  color:var(--accent);
}
.pillar-title{
  font-size:18px;
  font-weight:500;
  line-height:25.2px;
  letter-spacing:-.36px;
  color:var(--ink);
}
.pillar-text{
  margin-top:8px;
  font-size:14px;
  font-weight:500;
  line-height:23.8px;
  color:var(--body);
}

/* ============================================================
   FEATURES
   ============================================================ */

.features{
  position:relative;
  padding:84px 30px 86px;
  overflow:clip;
}
.features-glow{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}
.glow{ position:absolute; border-radius:2000px; filter:blur(90px); }
.glow-a{ left:6%;  top:180px; width:1112px; height:415px; background:rgba(250,187,132,.55); }
.glow-b{ left:14%; top:20px;  width:703px;  height:501px; background:rgba(255,255,255,.9); }
.glow-c{ left:1%;  top:390px; width:703px;  height:501px; background:rgba(255,212,133,.18); }

.features .container{ position:relative; z-index:1; }

.section-head{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  text-align:center;
  margin-bottom:48px;
}
.section-head h2{
  max-width:560px;
  font-size:44px;
  font-weight:500;
  line-height:48.4px;
  letter-spacing:-1.32px;
  color:var(--ink);
}
.section-sub{
  max-width:450px;
  font-size:16px;
  font-weight:500;
  line-height:24px;
  color:var(--body);
}

/* grade minimalista de serviços */
.cards{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}

.card{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:76px;
  padding:18px 20px;
  border-radius:14px;
  background:var(--card);
  transition:transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, background .3s ease;
}
.card:hover{
  transform:translateY(-3px);
  background:#FFFBF7;
  box-shadow:0 16px 32px rgba(112,104,99,.12);
}

.card-dot{
  flex:none;
  width:7px; height:7px;
  border-radius:50%;
  background:linear-gradient(299deg, #EB6A00 11%, #FFC766 100%);
  transition:transform .3s cubic-bezier(.22,1,.36,1);
}
.card:hover .card-dot{ transform:scale(1.45); }

.card-title{
  font-size:15px;
  font-weight:500;
  line-height:20px;
  letter-spacing:-.2px;
  color:var(--ink);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq{ padding:120px 30px; }
.faq-grid{
  display:grid;
  grid-template-columns:350px 1fr;
  gap:146px;
  align-items:start;
}
.faq-intro{ display:flex; flex-direction:column; gap:16px; align-items:flex-start; }
.faq-intro h2{
  font-size:44px;
  font-weight:500;
  line-height:48.4px;
  letter-spacing:-1.32px;
  color:var(--ink);
}
.faq-intro p{
  font-size:16px;
  font-weight:500;
  line-height:24px;
  color:var(--body);
}
.faq-intro .btn{ margin-top:8px; }

.faq-list{ display:flex; flex-direction:column; gap:20px; }

.faq-item{
  border-radius:12px;
  background:var(--faq);
  overflow:hidden;
  transition:background .25s ease;
}
.faq-q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  width:100%;
  padding:20px 24px;
  text-align:left;
  font-size:18px;
  font-weight:500;
  line-height:1.5;
  color:var(--ink);
}
.faq-icon{
  position:relative;
  flex:none;
  width:20px; height:20px;
}
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  left:50%; top:50%;
  width:13px; height:1.8px;
  border-radius:2px;
  background:var(--accent-2);
  transform:translate(-50%,-50%);
  transition:transform .3s cubic-bezier(.22,1,.36,1), opacity .25s ease;
}
.faq-icon::after{ transform:translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-icon::after{ transform:translate(-50%,-50%) rotate(0deg); opacity:0; }

.faq-a{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .38s cubic-bezier(.22,1,.36,1);
}
.faq-item.open .faq-a{ grid-template-rows:1fr; }
.faq-a > div{ overflow:hidden; }
.faq-a p{
  padding:0 24px 20px;
  font-size:16px;
  font-weight:400;
  line-height:24px;
  color:var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer{ padding:80px 30px 30px; }
.footer .container{ display:flex; flex-direction:column; gap:64px; }

.footer-top{
  display:grid;
  grid-template-columns:350px 1fr;
  gap:66px;
}
.footer-brand{ display:flex; flex-direction:column; gap:16px; align-items:flex-start; }
.footer-brand img{ width:164px; height:31px; object-fit:contain; }
.footer-brand p{
  font-size:16px;
  font-weight:500;
  line-height:24px;
  color:var(--muted);
}
.socials{ display:flex; gap:8px; margin-top:16px; }
.socials a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:36px; height:36px;
  border-radius:50%;
  background:rgba(255,255,255,.7);
  box-shadow:inset 0 0 0 1px rgba(189,116,64,.14);
  color:var(--ink);
  transition:background .22s ease, color .22s ease, transform .22s ease;
}
.socials a:hover{ background:linear-gradient(var(--btn-a), var(--btn-b)); color:#FFF8F5; transform:translateY(-2px); }
.socials svg{ width:17px; height:17px; }

.footer-cols{
  display:grid;
  grid-template-columns:1fr 1fr 360px;
  gap:48px;
}
.footer-col{ display:flex; flex-direction:column; gap:10px; }
.footer-col h4{
  margin-bottom:10px;
  font-size:24px;
  font-weight:500;
  line-height:36px;
  color:var(--body);
}
.footer-col p{
  font-size:16px;
  font-weight:500;
  line-height:24px;
  color:var(--muted);
}
.footer-col a{ transition:color .2s ease; }
.footer-col a:hover{ color:var(--accent-2); }

.footer-cta{ gap:20px; align-items:flex-start; }
.footer-cta h4{ margin-bottom:0; }
.footer-cta-text{ max-width:330px; }

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:18px 20px;
  border-radius:8px;
}
.footer-bottom p{
  font-size:16px;
  font-weight:500;
  line-height:24px;
  color:var(--muted);
}

/* ============================================================
   BLOG
   ============================================================ */

.blog-hero{
  position:relative;
  padding:96px 30px 56px;
  overflow:clip;
}
.blog-hero-dots{
  position:absolute;
  top:-128px; left:-51px; right:-51px;
  height:520px;
  background-image:url("assets/marquee.jpg");
  background-size:908px 460px;
  opacity:.5;
  -webkit-mask-image:radial-gradient(130% 75% at 50% 88%, rgba(0,0,0,0) 0%, #000 100%);
          mask-image:radial-gradient(130% 75% at 50% 88%, rgba(0,0,0,0) 0%, #000 100%);
  pointer-events:none;
}
.blog-hero .container{ position:relative; z-index:1; }
.blog-hero .eyebrow{ margin-bottom:16px; }
.blog-hero h1{
  max-width:700px;
  font-size:56px;
  font-weight:500;
  line-height:58px;
  letter-spacing:-2.6px;
  color:var(--ink);
}
.blog-lede{
  max-width:560px;
  margin-top:16px;
  font-size:16px;
  font-weight:500;
  line-height:24px;
  color:var(--body);
}

.blog-filters{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:32px;
}
.blog-filter{
  padding:8px 16px;
  border-radius:100px;
  background:var(--card);
  font-size:14px;
  font-weight:500;
  color:var(--muted);
  transition:background .22s ease, color .22s ease, box-shadow .22s ease;
}
.blog-filter:hover{ color:var(--accent-2); }
.blog-filter.on{
  background:linear-gradient(var(--btn-a) 0%, var(--btn-b) 100%);
  color:#FFF8F5;
  box-shadow:0 8px 20px rgba(112,104,99,.16);
}

.blog-list-section{ padding:0 30px 110px; }

.blog-list{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
}

.post{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:26px;
  border-radius:18px;
  background:var(--card);
  transition:transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, background .3s ease;
}
.post:hover{
  transform:translateY(-4px);
  background:#FFFBF7;
  box-shadow:0 20px 40px rgba(112,104,99,.13);
}

.post-meta{ display:flex; align-items:center; gap:10px; }
.post-tag{
  padding:3px 10px;
  border-radius:100px;
  background:rgba(255,196,133,.22);
  font-size:12px;
  font-weight:600;
  color:var(--accent-2);
}
.post-date{ font-size:13px; font-weight:400; color:var(--domain); }

.post-title{
  font-size:19px;
  font-weight:500;
  line-height:26px;
  letter-spacing:-.4px;
  color:var(--ink);
}
.post-summary{
  flex:1;
  font-size:15px;
  font-weight:400;
  line-height:23px;
  color:var(--muted);
}

.post-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:6px;
  padding-top:14px;
  border-top:1px solid rgba(189,116,64,.12);
}
.post-source{ font-size:14px; font-weight:500; color:var(--accent-3); }
.post-go{
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px; height:28px;
  border-radius:50%;
  background:#FFFBF7;
  color:var(--ink);
  transition:background .25s ease, color .25s ease, transform .25s ease;
}
.post-go svg{ width:14px; height:14px; }
.post:hover .post-go{
  background:linear-gradient(var(--btn-a) 0%, var(--btn-b) 100%);
  color:#FFF8F5;
  transform:translate(2px,-2px);
}

.blog-note{
  margin-top:40px;
  font-size:13px;
  font-weight:400;
  line-height:20px;
  color:var(--domain);
}

@media (max-width:1024px){
  .blog-hero{ padding:64px 20px 40px; }
  .blog-hero h1{ font-size:42px; line-height:46px; letter-spacing:-1.6px; }
  .blog-list-section{ padding:0 20px 80px; }
  .blog-list{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:720px){
  .blog-hero h1{ font-size:32px; line-height:36px; letter-spacing:-1px; }
  .blog-list{ grid-template-columns:1fr; gap:14px; }
  .post{ padding:20px; }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1) var(--d,0s), transform .7s cubic-bezier(.22,1,.36,1) var(--d,0s);
}
.reveal.in{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero-title .w{ opacity:1; transform:none; animation:none; }
  .sobre-statement .w{ color:var(--grey); }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* ============================================================
   Responsivo
   ============================================================ */

@media (max-width:1180px){
  .faq-grid{ gap:64px; }
  .footer-cols{ grid-template-columns:1fr 1fr 300px; gap:32px; }
}

@media (max-width:1024px){
  .nav-links{ display:none; }
  .nav-toggle{ display:none; }
  .nav-burger{ display:flex; }
  .nav-inner{ height:56px; }
  .nav{ padding:16px 20px; }

  .hero{ padding:96px 0 380px; }
  .hero-title{ font-size:48px; line-height:48px; letter-spacing:-2.4px; }
  .hero-bottom{ flex-direction:column; align-items:flex-start; gap:24px; }
  .hero-lede{ width:auto; max-width:520px; font-size:15px; }

  .sobre-statement{ font-size:26px; line-height:36px; }
  .pillars{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px 8px; }

  .cards{ grid-template-columns:repeat(3, minmax(0,1fr)); }
  .section-head h2{ font-size:38px; line-height:42px; letter-spacing:-1px; }

  .faq{ padding:80px 20px; }
  .faq-grid{ grid-template-columns:1fr; gap:40px; }
  .faq-intro h2{ font-size:38px; line-height:42px; letter-spacing:-1px; }

  .footer-top{ grid-template-columns:1fr; gap:48px; }
  .footer-cols{ grid-template-columns:1fr 1fr; }
  .footer-cta{ grid-column:1 / -1; }
}

/* ── Celular: o original vira um layout centralizado ── */
@media (max-width:720px){
  .nav{ padding:16px 20px; }
  .nav-inner{ height:78px; }               /* nav = 110px de altura, como no original */
  .nav-logo img{ width:135px; height:25px; }
  .nav-right > .btn{ display:none; }       /* no celular o original deixa só logo + menu */
  .nav-toggle{ display:none; }

  .hero-dots{ left:0; right:-27px; }

  .sobre, .features{ padding-inline:20px; }
  .footer{ padding:56px 20px 20px; }

  /* HERO centralizado */
  .hero{ padding:50px 0 214px; }
  .hero-content{ max-width:none; padding-inline:44px; }
  .hero-copy{ max-width:none; align-items:center; text-align:center; }

  .hero-badges{                             /* bandeira em cima, chip embaixo */
    flex-direction:column-reverse;
    align-items:center;
    height:auto;
    gap:10px;
  }
  .hero-title{
    font-size:28px;
    line-height:30.8px;
    letter-spacing:-.84px;
    text-align:center;
  }
  .hero-bottom{ flex-direction:column; align-items:center; gap:24px; }
  .hero-lede{ width:auto; max-width:none; font-size:16px; line-height:24px; text-align:center; }

  /* mesma proporção recortada que o original usa no mobile */
  .hero-art{
    width:calc(100% + 141px);
    aspect-ratio:531 / 390;
    transform:translate(-50%, 61%);
  }

  /* SOBRE */
  .sobre-statement{ font-size:18px; line-height:26px; }
  .pillars{ grid-template-columns:1fr; gap:32px; margin-top:40px; }
  .pillar{ align-items:center; padding-right:0; text-align:center; }

  /* FEATURES */
  .section-head h2{ font-size:28px; line-height:30.8px; letter-spacing:-.28px; }
  .section-sub{ max-width:none; }
  .cards{ grid-template-columns:1fr 1fr; gap:10px; }
  .card{ min-height:0; padding:16px; gap:10px; align-items:flex-start; }
  .card-dot{ margin-top:6px; }
  .card-title{ font-size:14px; line-height:19px; }

  /* FAQ — título à esquerda, como no original */
  .faq-intro h2{ font-size:28px; line-height:30.8px; letter-spacing:-.28px; }
  .faq-q{ font-size:16px; padding:18px; }
  .faq-a p{ padding:0 18px 18px; font-size:15px; }

  /* RODAPÉ — Navegação e Features lado a lado */
  .footer-cols{ grid-template-columns:1fr 1fr; gap:32px 24px; }
  .footer-cta{ grid-column:1 / -1; }
  .footer-bottom{ flex-direction:column; gap:2px; text-align:center; }
  .footer-bottom p{ font-size:14px; }
}

@media (max-width:420px){
  .hero-content{ padding-inline:28px; }
  .footer-col h4{ font-size:20px; line-height:30px; }
}
