/* ==========================================================================
   Cross Analytics — Inteligência Mineral Integrada
   Mobile-first · Paleta extraída do material oficial (deck/XD)
   ========================================================================== */

/* ---------- Fontes self-hosted ---------- */
@font-face{ font-family:"Poppins"; font-weight:300; font-style:normal; font-display:swap;
  src:url("../fonts/Poppins-Light.woff2") format("woff2"); }
@font-face{ font-family:"Poppins"; font-weight:400; font-style:normal; font-display:swap;
  src:url("../fonts/Poppins-Regular.woff2") format("woff2"); }
@font-face{ font-family:"Poppins"; font-weight:500; font-style:normal; font-display:swap;
  src:url("../fonts/Poppins-Medium.woff2") format("woff2"); }
@font-face{ font-family:"Poppins"; font-weight:600; font-style:normal; font-display:swap;
  src:url("../fonts/Poppins-SemiBold.woff2") format("woff2"); }
@font-face{ font-family:"Poppins"; font-weight:700; font-style:normal; font-display:swap;
  src:url("../fonts/Poppins-Bold.woff2") format("woff2"); }
@font-face{ font-family:"Playfair Display"; font-weight:700; font-style:normal; font-display:swap;
  src:url("../fonts/PlayfairDisplay-Bold.woff2") format("woff2"); }

:root{
  /* Cores do material oficial */
  --ink:        #181C2B;   /* fundo principal (deck) */
  --ink-2:      #1F2438;   /* painéis */
  --ink-3:      #272C42;   /* cartões */
  --line:       #353C5B;   /* bordas */
  --violet:     #5A5A92;   /* roxo de apoio */
  --lavender:   #B3BDF7;   /* lavanda dos ícones */
  --coral:      #F0936F;   /* coral do gradiente */
  --plum:       #8F92D8;   /* violeta do gradiente */
  --hot:        #DB3328;   /* vermelho dos infográficos */
  --paper:      #F7F7FA;   /* seção clara */
  --paper-2:    #FFFFFF;
  --text:       #FFFFFF;
  --muted:      #A9AFC6;
  --text-dark:  #23273A;
  --muted-dark: #5C6178;

  --grad: linear-gradient(96deg, var(--coral) 0%, var(--plum) 100%);

  --font-body: "Poppins", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --radius: 14px;
  --container: 1180px;
  --header-h: 72px;
}

/* ---------- Reset básico ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
html:focus-within{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  font-weight:300;
  font-size:1rem;
  line-height:1.7;
  color:var(--text);
  background:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
strong,b{ font-weight:600; }

.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:22px; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

.serif{ font-family:var(--font-serif); font-weight:700; }
.grad-text{
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}
.violet{ color:var(--violet); }

/* ---------- Botões ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.85rem 1.7rem;
  border-radius:999px;
  font-weight:600; font-size:.92rem; letter-spacing:.01em;
  transition:transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
  text-align:center;
}
.btn--gradient{
  background:var(--grad); color:#fff;
  box-shadow:0 8px 24px rgba(240,147,111,.28);
}
.btn--gradient:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(240,147,111,.4); }
.btn--ghost{
  border:1px solid var(--line); color:var(--text);
  background:rgba(255,255,255,.03);
}
.btn--ghost:hover{ border-color:var(--lavender); color:var(--lavender); }
.btn--lg{ padding:1.05rem 2.2rem; font-size:1rem; }

/* ---------- Eyebrow / títulos ---------- */
.eyebrow{
  display:flex; align-items:center; justify-content:center; gap:.7rem;
  font-size:.92rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--lavender);
  margin-bottom:1rem;
  text-align:center;
}
.eyebrow::before, .eyebrow::after{
  content:""; display:inline-block;
  width:26px; height:1px; background:var(--grad);
  flex-shrink:0;
}
.eyebrow--dark{ color:var(--violet); }

.section{ padding:4.5rem 0; position:relative; }
section[id]{ scroll-margin-top:calc(var(--header-h) + 8px); }
.section--dark{ background:transparent; color:var(--text); }
.section--light{ background:var(--paper); color:var(--text-dark); }
.section--light.fade-top{
  background:linear-gradient(180deg, rgba(247,247,250,0), var(--paper) 180px);
  padding-top:11rem;
}
.section--light.fade-bottom{
  background:linear-gradient(0deg, rgba(247,247,250,0), var(--paper) 180px);
  padding-bottom:11rem;
}
.section--light.fade-top.fade-bottom{
  background:linear-gradient(180deg, rgba(247,247,250,0), var(--paper) 180px,
             var(--paper) calc(100% - 180px), rgba(247,247,250,0));
  padding-top:11rem; padding-bottom:11rem;
}

.section__title{
  font-size:clamp(1.45rem, 4.6vw, 2.3rem);
  font-weight:600; line-height:1.3;
  max-width:48ch;
  margin-bottom:1.6rem;
  text-align:center;
}
.section__title--dark{ color:var(--text-dark); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  height:var(--header-h);
  transition:background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.header.is-scrolled{
  background:rgba(24,28,43,.88);
  -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
  box-shadow:0 1px 0 rgba(255,255,255,.06);
}
.header__inner{
  height:100%;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.header__brand img{ width:118px; height:auto; }

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

/* Nav mobile: gaveta */
.nav{
  position:fixed; top:var(--header-h); right:0; bottom:0;
  width:min(320px, 84vw);
  background:rgba(26,30,48,.97);
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  box-shadow:-24px 0 60px rgba(0,0,0,.5);
  border-left:1px solid var(--line);
  padding:2rem 1.6rem;
  display:flex; flex-direction:column; gap:2rem;
  transform:translateX(105%);
  transition:transform .35s ease;
  overflow-y:auto;
}
.nav.is-open{ transform:translateX(0); }
.nav__list{ display:flex; flex-direction:column; gap:1.1rem; }
.nav__link{
  font-weight:600; font-size:1.02rem; color:var(--muted);
  transition:color .2s ease;
}
.nav__link:hover, .nav__link.is-active{ color:#fff; }
.nav__cta{ align-self:flex-start; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  padding:calc(var(--header-h) + 2.5rem) 0 4rem;
  min-height:100svh;
  display:flex; flex-direction:column; justify-content:center;
  overflow:hidden;
  isolation:isolate;
}
.hero__inner{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.hero__copy{ text-shadow:0 2px 18px rgba(24,28,43,.9), 0 0 6px rgba(24,28,43,.8); }
.hero__eyebrow{
  font-size:.95rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase;
  color:var(--lavender);
  margin-bottom:.6rem;
  display:flex; align-items:center; justify-content:center; gap:.7rem;
}
.hero__eyebrow::before, .hero__eyebrow::after{
  content:""; display:inline-block;
  width:30px; height:1px; background:var(--grad);
  flex-shrink:0;
}
.hero__art{ width:100%; max-width:880px; margin-inline:auto; }
.hero__art img{ width:100%; }
.hero__copy{ max-width:620px; margin-top:.8rem; }
.hero__lead{ font-size:1.02rem; color:var(--muted); }
.hero__lead strong, .hero__lead em{ color:#fff; font-style:normal; }
.hero__actions{
  display:flex; flex-wrap:wrap; gap:.85rem;
  margin-top:1.6rem;
  justify-content:center;
}
.hero__scroll{
  position:absolute; left:50%; bottom:1.1rem; transform:translateX(-50%);
  width:26px; height:42px;
  border:1.5px solid var(--line); border-radius:14px;
  display:flex; justify-content:center; padding-top:8px;
}
.hero__scroll span{
  width:3px; height:9px; border-radius:3px;
  background:var(--lavender);
  animation:scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue{
  0%,100%{ transform:translateY(0); opacity:1; }
  60%{ transform:translateY(12px); opacity:.2; }
}

/* ==========================================================================
   QUEM SOMOS
   ========================================================================== */
.about__grid{ display:grid; gap:2.2rem; }
.about__text p{ color:var(--muted); margin-bottom:1rem; }
.about__text strong{ color:#fff; }
.about__agents{
  background:var(--ink-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.6rem;
}
.about__agents-label{
  font-size:.78rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--lavender);
  margin-bottom:1rem;
}
.agent-pills{ display:flex; flex-wrap:wrap; gap:.55rem; }
.agent-pills li{
  font-size:.82rem; font-weight:600; letter-spacing:.06em;
  padding:.4rem .95rem;
  border:1px solid var(--line); border-radius:999px;
  color:var(--text);
  background:rgba(179,189,247,.06);
}
.about__agents-link{
  display:inline-block; margin-top:1.3rem;
  font-weight:600; font-size:.9rem; color:var(--coral);
  transition:color .2s ease;
}
.about__agents-link:hover{ color:var(--plum); }

/* ==========================================================================
   O PROBLEMA — cartões
   ========================================================================== */
.problem__grid{ display:grid; gap:1.1rem; }
.card{
  background:var(--ink-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.6rem 1.5rem;
  transition:transform .3s ease, border-color .3s ease;
}
.card:hover{ transform:translateY(-4px); border-color:var(--violet); }
.card__icon{
  display:inline-flex; width:52px; height:52px; margin-bottom:1.1rem;
  color:var(--lavender);
  align-items:center; justify-content:center;
}
.card__icon img, .card__icon svg{ width:100%; height:100%; object-fit:contain; }
.card h3{ font-size:1.04rem; font-weight:600; margin-bottom:.5rem; line-height:1.4; }
.card p{ font-size:.92rem; color:var(--muted); }

/* ==========================================================================
   ABISMO DOS 73%
   ========================================================================== */
.abyss__viz{
  position:relative;
  max-width:560px; margin:2.6rem auto 3rem;
  text-align:center;
}
.abyss__pib{
  font-weight:600; font-size:clamp(1.2rem, 4vw, 1.65rem);
  color:#fff; margin-bottom:.4rem;
}
.abyss__line{
  display:block; width:1px; height:clamp(34px, 7vw, 64px);
  margin:0 auto;
  background:linear-gradient(to bottom, rgba(255,255,255,.85), rgba(255,255,255,.15));
}
.abyss__disc{
  position:relative;
  width:min(88vw, 480px); aspect-ratio:1/1;
  margin-inline:auto;
  border-radius:50%; overflow:hidden;
  box-shadow:0 30px 80px rgba(219,51,40,.30), 0 0 0 1px rgba(143,146,216,.08);
}
.abyss__dome{
  height:38%;
  background:linear-gradient(180deg, #161A2C, #1C2136);
  display:flex; align-items:center; justify-content:center;
}
.abyss__mapped{
  font-weight:600; font-size:clamp(1.25rem, 4vw, 1.7rem); color:#cfd4ea;
  transform:translateY(18%);
}
.abyss__core{
  height:62%;
  background:radial-gradient(130% 125% at 28% 8%, #E8533A 0%, #CE3A2A 38%, #8E221A 78%, #5E150F 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
  text-align:center; padding:0 8%;
  gap:0;
  padding-top:2%;
}
.abyss__big{
  font-size:clamp(3.6rem, 16vw, 6.4rem);
  line-height:.9; color:#fff; font-weight:700;
  margin-bottom:.25em;
}
.abyss__pct{
  font-size:.65em;
}
.abyss__txt{
  color:#fff; font-weight:500;
  font-size:clamp(.95rem, 3.4vw, 1.35rem); line-height:1.3;
  margin-top:.1em;
}
.abyss__txt--strong{ font-weight:700; font-size:clamp(1.1rem, 3.9vw, 1.55rem); margin-top:.05em; }
.abyss__txt--year{ margin-top:-.1em; }
.abyss__stats{
  display:grid; gap:1.4rem;
  max-width:880px; margin-inline:auto;
}
.stat{
  border-left:2px solid var(--line);
  padding-left:1.3rem;
}
.stat__num{
  display:block;
  font-size:clamp(2.6rem, 9vw, 3.8rem);
  line-height:1.05;
  color:#fff;
}
.stat--hot .stat__num{ color:var(--hot); }
.stat--hot{ border-left-color:var(--hot); }
.stat__label{ display:block; color:var(--muted); font-size:.95rem; max-width:34ch; }
.stat__label strong{ color:#fff; }

/* ==========================================================================
   HECTARES + GRÁFICO
   ========================================================================== */
.hectares__title{
  display:flex; flex-direction:column; align-items:center;
  gap:.3rem;
  margin-bottom:1.2rem; text-align:center;
}
.hectares__num{
  font-size:clamp(3rem, 11vw, 5.4rem);
  line-height:1.15;
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}
.hectares__unit{
  font-size:clamp(1rem, 3vw, 1.35rem);
  font-weight:600; line-height:1.35;
}
.hectares__lead{ color:var(--muted); max-width:62ch; margin-bottom:2.4rem; margin-inline:auto; text-align:center; }

.chart{ position:relative; }
.chart__scroll{
  overflow-x:auto; overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin; scrollbar-color:var(--line) transparent;
  padding-bottom:.6rem;
}
.chart__bars{
  display:flex; align-items:flex-end; gap:7px;
  height:340px;
  min-width:760px;
  padding-top:84px; /* espaço para o rótulo vertical */
}
.bar{
  flex:1 0 24px;
  display:flex; flex-direction:column;
  height:100%;
}
.bar__track{
  position:relative;
  flex:1;
  display:flex; align-items:flex-end;
}
.bar__fill{
  width:100%;
  border-radius:3px 3px 0 0;
  transform-origin:bottom;
  transform:scaleY(0);
  transition:transform .9s cubic-bezier(.22,.9,.35,1);
}
.chart.is-on .bar__fill{ transform:scaleY(1); }
.bar__value{
  position:absolute;
  left:50%;
  bottom:calc(var(--h) + 8px);
  transform:translateX(-50%) rotate(180deg);
  writing-mode:vertical-rl;
  font-size:.72rem; font-weight:600; color:#fff;
  white-space:nowrap;
  opacity:0;
  transition:opacity .5s ease .45s;
}
.chart.is-on .bar__value{ opacity:1; }
.bar__label{
  margin-top:.5rem;
  font-size:.7rem; font-weight:500; color:var(--muted);
  text-align:center;
}
.chart__hint{
  margin-top:.4rem;
  font-size:.78rem; color:var(--violet);
  text-align:right;
}

/* ==========================================================================
   12% — ESTOQUE
   ========================================================================== */
.stock__grid{ display:grid; gap:2rem; align-items:center; }
.stock__art{ max-width:340px; margin-inline:auto; order:2; }
.stock__copy{ order:1; }
.stock__copy p{ color:var(--muted); margin-bottom:1rem; }
.stock__copy strong{ color:#fff; }
.stock__copy .section__title{ margin-bottom:1.4rem; text-align:center; }
.stock__copy .eyebrow{ justify-content:center; }
.stock__copy .serif{ font-size:1.35em; }

/* ==========================================================================
   SISTEMA GERENTE (CLARO)
   ========================================================================== */
.gerente__lead, .cases__lead{
  color:var(--muted-dark);
  max-width:72ch;
  margin-bottom:2.4rem;
}
.gerente__lead strong{ color:var(--text-dark); }
.gerente__grid{ display:grid; gap:1.1rem; }
.agent{
  background:var(--paper-2);
  border:1px solid #E4E6F0;
  border-radius:var(--radius);
  padding:1.6rem 1.5rem;
  box-shadow:0 2px 10px rgba(24,28,43,.04);
  transition:transform .3s ease, box-shadow .3s ease;
}
.agent:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(24,28,43,.1); }
.agent__name{
  font-size:1.12rem; font-weight:700; letter-spacing:.02em;
  color:var(--text-dark);
  margin-bottom:.65rem;
}
.agent__name span{ color:var(--violet); font-weight:600; margin-left:.3rem; }
.agent p{ font-size:.92rem; color:var(--muted-dark); margin-bottom:.4rem; }
.agent p strong{ color:var(--text-dark); font-weight:600; }

/* ==========================================================================
   CASOS DE USO (CLARO)
   ========================================================================== */
.cases__grid{ display:grid; gap:1.1rem; }
.case{
  background:var(--paper-2);
  border:1px solid #E4E6F0;
  border-radius:var(--radius);
  padding:1.7rem 1.5rem;
  box-shadow:0 2px 10px rgba(24,28,43,.04);
  transition:transform .3s ease, box-shadow .3s ease;
}
.case:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(24,28,43,.1); }
.case__icon{
  display:flex; align-items:center;
  height:56px; margin-bottom:1.1rem;
}
.case__icon img{ max-height:100%; width:auto; }
.case h3{
  font-size:1.04rem; font-weight:600; line-height:1.4;
  color:var(--text-dark);
  margin-bottom:.5rem;
}
.case h3 b{ color:var(--violet); margin-right:.15rem; }
.case p{ font-size:.92rem; color:var(--muted-dark); }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta{
  overflow:hidden; isolation:isolate;
  padding:7rem 0 6rem;
  text-align:center;
}
.cta__title{
  font-size:clamp(1.7rem, 5.6vw, 2.7rem);
  font-weight:600; line-height:1.25;
  max-width:24ch; margin:0 auto 1.2rem;
}
.cta__text{ color:var(--muted); max-width:62ch; margin:0 auto 2.2rem; }
.cta__actions{ display:flex; justify-content:center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{
  background:rgba(18,21,31,.72);
  border-top:1px solid var(--line);
  padding:3rem 0 2rem;
}
.footer__inner{ display:flex; flex-direction:column; align-items:center; gap:1.1rem; text-align:center; }
.footer__logo{ width:120px; }
.footer__tag{ font-size:.82rem; letter-spacing:.18em; text-transform:uppercase; color:var(--violet); }
.footer__nav{ display:flex; flex-wrap:wrap; justify-content:center; gap:1.2rem; }
.footer__nav a{ font-size:.88rem; color:var(--muted); transition:color .2s ease; }
.footer__nav a:hover{ color:#fff; }
.footer__copy{ font-size:.78rem; color:var(--violet); margin-top:.6rem; }

/* ==========================================================================
   REVEAL (scroll)
   ========================================================================== */
.reveal{
  opacity:0; transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-in{ opacity:1; transform:none; }

/* Acessibilidade: foco visível + redução de movimento */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--lavender);
  outline-offset:3px;
  border-radius:6px;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .bar__fill{ transform:scaleY(1) !important; transition:none; }
  .hero__scroll span{ animation:none; }
  *,*::before,*::after{ transition-duration:.01ms !important; animation-duration:.01ms !important; }
}

/* ==========================================================================
   BREAKPOINTS (mobile-first)
   ========================================================================== */
@media (min-width: 560px){
  .problem__grid{ grid-template-columns:repeat(2, 1fr); }
  .cases__grid{ grid-template-columns:repeat(2, 1fr); }
  .gerente__grid{ grid-template-columns:repeat(2, 1fr); }
}

@media (min-width: 900px){
  .section{ padding:6.5rem 0; }

  /* Header: nav inline */
  .header__burger{ display:none; }
  .nav{
    position:static; transform:none;
    flex-direction:row; align-items:center; gap:2rem;
    background:none !important; border:0; padding:0;
    width:auto; overflow:visible;
    box-shadow:none; -webkit-backdrop-filter:none; backdrop-filter:none;
  }
  .nav__list{ flex-direction:row; gap:1.7rem; }
  .nav__link{ font-size:.9rem; font-weight:600; }
  .nav__cta{ align-self:auto; }

  .hero{ padding-top:calc(var(--header-h) + 3rem); }
  .hero__inner{ align-items:center; text-align:center; }
  .hero__copy{ max-width:760px; }
  .hero__actions{ justify-content:center; }

  .about__grid{ grid-template-columns:1.5fr 1fr; align-items:start; gap:3rem; }

  .problem__grid{ grid-template-columns:repeat(3, 1fr); }
  .problem__grid .card:nth-last-child(2):nth-child(3n+1),
  .problem__grid .card:last-child:nth-child(3n+2){ /* deixa o grid natural */ }

  .abyss__stats{ grid-template-columns:repeat(3,1fr); gap:2rem; text-align:center; }
  .abyss__stats .stat{ align-items:center; }

  .chart__bars{ min-width:0; height:600px; }
  .chart__hint{ display:none; }

  .stock__grid{ grid-template-columns:.8fr 1.2fr; gap:3.5rem; }
  .stock__art{ max-width:420px; order:1; }
  .stock__copy{ order:2; }
  .stock__copy .section__title{ text-align:left; }
  .stock__copy .eyebrow{ justify-content:flex-start; }

  .gerente__grid{ grid-template-columns:repeat(3, 1fr); }
  .cases__grid{ grid-template-columns:repeat(3, 1fr); }
}

@media (min-width: 1200px){
  .gerente__grid{ grid-template-columns:repeat(4, 1fr); }
  .gerente__grid .agent:nth-child(n+5){ grid-column:span 1; }
}


/* ==========================================================================
   TRANSIÇÕES SUAVES ENTRE SEÇÕES (sem cortes secos)
   ========================================================================== */
.section--light .eyebrow--dark, .section--light .section__title--dark{ position:relative; }
.plans{ background:transparent; }
.cta{
  background:radial-gradient(1100px 540px at 50% 115%, rgba(90,90,146,.30), transparent 70%);
}

/* ==========================================================================
   PLANOS — formatos de análise (escuro)
   ========================================================================== */
.section__title--center{ text-align:center; max-width:none; margin-inline:auto; }
.plans{ padding-top:5.5rem; padding-bottom:6rem; }
.plans__sub{ text-align:center; color:#fff; margin-bottom:.4rem; }
.plans__lead{ text-align:center; color:var(--muted); max-width:60ch; margin:0 auto 2.6rem; }
.plans__grid{ display:grid; gap:1.6rem; }
.plan{
  background:#fff; color:var(--text-dark);
  border-radius:16px; padding:1.8rem 1.5rem 1.6rem;
  display:flex; flex-direction:column;
  box-shadow:0 18px 50px rgba(8,10,20,.45);
  transition:transform .35s ease, box-shadow .35s ease;
}
.plan:hover{ transform:translateY(-6px); box-shadow:0 28px 70px rgba(8,10,20,.6); }
.plan__name{
  text-align:center; font-size:1.3rem; font-weight:600;
  padding-bottom:1rem; margin-bottom:1.2rem;
  border-bottom:1px solid #E4E6F0;
}
.plan__tag{ display:block; font-size:.68rem; font-weight:500; color:#9aa0b8; letter-spacing:.14em; text-transform:uppercase; margin-top:.3rem; }
.plan__price{ text-align:center; margin-bottom:1.4rem; }
.plan__price span{ display:block; font-size:1.9rem; font-weight:700; color:#2E3A8C; }
.plan__price small{ color:#9aa0b8; font-size:.85rem; }
.plan__tagline{ text-align:center; margin-bottom:1.4rem; }
.plan__tagline span{ display:block; font-size:1.25rem; font-weight:700; color:#2E3A8C; }
.plan__tagline small{ display:block; color:#9aa0b8; font-size:.85rem; margin-top:.2rem; }
.plan--featured .plan__tagline span{ color:var(--hot); }
.plan__list{ list-style:none; display:grid; gap:.5rem; margin-bottom:1.6rem; flex:1; }
.plan__list li{
  background:#F4F5F9; border-left:3px solid var(--hot);
  padding:.62rem .8rem; font-size:.88rem; line-height:1.45; border-radius:0 8px 8px 0;
}
.plan__list strong{ font-weight:600; }
.plan__cta{ width:100%; text-align:center; }
.plan .btn--ghost{ border-color:#c9cde0; color:var(--text-dark); }
.plan .btn--ghost:hover{ border-color:var(--violet); color:var(--violet); }
.plan--featured{ border:2px solid var(--hot); position:relative; }
.plan--featured .plan__name{ color:var(--hot); }
.plan--featured .plan__price span{ color:var(--hot); }
.plan__badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:linear-gradient(90deg, var(--hot), #f0936f);
  color:#fff; font-size:.7rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  padding:.32rem .9rem; border-radius:999px; white-space:nowrap;
}

/* ==========================================================================
   PACOTES POR ESCALA (CLARO)
   ========================================================================== */
.packs__lead{ color:var(--muted-dark); max-width:56ch; margin:0 auto 3rem; text-align:center; }
.packs .section__title{ margin-bottom:1rem; }
.packs__grid{ display:grid; gap:1.8rem; }
.pack{
  position:relative;
  background:#fff; border:1px solid #DDE0EC; border-radius:16px;
  padding:2.2rem 1.6rem 1.8rem;
  display:flex; flex-direction:column;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pack:hover{ transform:translateY(-6px); box-shadow:0 22px 54px rgba(40,46,80,.14); border-color:#c5c9de; }
.pack__badge{
  position:absolute; top:-13px; left:1.4rem;
  background:var(--ink); color:#fff;
  font-size:.68rem; font-weight:600; letter-spacing:.13em; text-transform:uppercase;
  padding:.34rem .9rem; border-radius:999px;
}
.pack__badge--hot{ background:linear-gradient(90deg, var(--coral), var(--violet)); }
.pack__name{ font-size:2rem; color:var(--ink); margin-bottom:.1rem; }
.pack__type{ font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color:#9aa0b8; font-weight:500; margin-bottom:1.2rem; }
.pack__price{ font-size:2.1rem; font-weight:700; color:var(--text-dark); margin-bottom:1.4rem; line-height:1.1; }
.pack__price small{ display:block; font-size:.85rem; font-weight:400; color:#9aa0b8; margin-top:.3rem; }
.pack__tagline{ font-size:1.15rem; font-weight:700; color:var(--text-dark); margin-bottom:1.4rem; line-height:1.3; }
.pack__tagline small{ display:block; font-size:.85rem; font-weight:400; color:#9aa0b8; margin-top:.2rem; }
.pack__list{ list-style:none; display:grid; gap:.7rem; margin-bottom:1.8rem; flex:1; }
.pack__list li{
  position:relative; padding:0 0 .7rem 1.2rem;
  font-size:.92rem; color:var(--muted-dark);
  border-bottom:1px solid #ECEEF5;
}
.pack__list li::before{ content:"›"; position:absolute; left:0; top:0; color:var(--violet); font-weight:700; }
.pack__cta{ width:100%; text-align:center; }
.btn--outline{
  border:1.5px solid #c9cde0; color:var(--text-dark); background:transparent;
}
.btn--outline:hover{ border-color:var(--violet); color:var(--violet); }
.pack--featured{ border:2px solid var(--ink); box-shadow:0 18px 46px rgba(40,46,80,.12); }

@media (min-width:900px){
  .plans__grid{ grid-template-columns:repeat(3,1fr); align-items:start; }
  .plan--featured{ transform:scale(1.03); }
  .plan--featured:hover{ transform:scale(1.03) translateY(-6px); }
  .packs__grid{ grid-template-columns:repeat(3,1fr); align-items:start; }
}

/* ==========================================================================
   WIDGET WHATSAPP FLUTUANTE
   ========================================================================== */
.wa-widget{
  position:fixed; right:16px; bottom:18px; z-index:120;
  display:flex; align-items:center; gap:.55rem;
  background:#25D366; color:#fff;
  font-weight:600; font-size:.92rem;
  padding:.78rem 1.05rem;
  border-radius:999px;
  box-shadow:0 10px 30px rgba(37,211,102,.45);
  transition:transform .3s ease, box-shadow .3s ease;
}
.wa-widget:hover{ transform:translateY(-3px) scale(1.03); box-shadow:0 16px 40px rgba(37,211,102,.55); }
.wa-widget__icon{ width:22px; height:22px; flex:none; }
.wa-widget__pulse{
  position:absolute; inset:0; border-radius:inherit;
  box-shadow:0 0 0 0 rgba(37,211,102,.55);
  animation:waPulse 2.4s ease-out infinite;
  pointer-events:none;
}
@keyframes waPulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow:0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width:559px){
  .wa-widget__label{ display:none; }
  .wa-widget{ padding:.85rem; }
}

/* ==========================================================================
   GRÁFICO — nomes completos no desktop
   ========================================================================== */
.bar__label i{ display:none; font-style:normal; }
@media (min-width:900px){
  .bar__label{
    writing-mode:vertical-rl; transform:rotate(180deg);
    height:158px; display:flex; align-items:center; justify-content:flex-end;
    font-size:.68rem; letter-spacing:.02em; white-space:nowrap;
  }
  .bar__label i{ display:inline; color:var(--muted); }
}

@media (prefers-reduced-motion: reduce){

  .wa-widget__pulse{ animation:none; }
}

/* Glow atrás do disco do abismo */
.abyss__viz::before{
  content:""; position:absolute; left:50%; bottom:-6%;
  width:130%; max-width:760px; aspect-ratio:1/1;
  transform:translateX(-50%);
  background:radial-gradient(closest-side, rgba(143,146,216,.16), transparent 70%);
  z-index:-1; pointer-events:none;
}
.abyss__viz{ z-index:1; }

/* ==========================================================================
   CANVAS DE MALHA ANIMADA (fundo contínuo do site)
   ========================================================================== */
#meshCanvas{
  position:fixed; inset:0; width:100%; height:100%;
  z-index:0; pointer-events:none;
}
body{ background:var(--ink); }
main, .footer{ position:relative; z-index:1; }

/* ==========================================================================
   BOTÕES WHATSAPP (conversão)
   ========================================================================== */
.btn--wa{
  background:#25D366; color:#fff;
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  box-shadow:0 8px 22px rgba(37,211,102,.28);
}
.btn--wa svg{ width:19px; height:19px; flex:none; }
.btn--wa:hover{
  background:#1EBE5A; color:#fff;
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(37,211,102,.42);
}
.btn--wa-strong{
  font-weight:700;
  box-shadow:0 10px 28px rgba(37,211,102,.45), 0 0 0 4px rgba(37,211,102,.16);
}
.cta-note{
  text-align:center; font-size:.74rem; color:#9aa0b8;
  margin-top:.6rem;
}
.cta-note--dark{ color:#8b90a8; }

/* ==========================================================================
   PLANOS — destaque e conversão
   ========================================================================== */
.plan__badge{
  background:var(--hot);
  box-shadow:0 6px 18px rgba(219,51,40,.45);
  z-index:2;
}
.plan--featured{
  box-shadow:0 24px 60px rgba(219,51,40,.22), 0 18px 50px rgba(8,10,20,.5);
}
.plan--featured:hover{
  box-shadow:0 30px 76px rgba(219,51,40,.3), 0 24px 64px rgba(8,10,20,.6);
}
.pack__badge--hot{ box-shadow:0 6px 16px rgba(143,146,216,.4); }
.pack--featured{ border-color:var(--violet); }

/* ==========================================================================
   MICROINTERAÇÕES / STAGGER
   ========================================================================== */
:is(.problem__grid, .gerente__grid, .cases__grid, .plans__grid, .packs__grid, .abyss__stats) > .reveal:nth-child(2){ transition-delay:.08s; }
:is(.problem__grid, .gerente__grid, .cases__grid, .plans__grid, .packs__grid, .abyss__stats) > .reveal:nth-child(3){ transition-delay:.16s; }
:is(.problem__grid, .gerente__grid, .cases__grid, .plans__grid, .packs__grid) > .reveal:nth-child(4){ transition-delay:.24s; }
:is(.problem__grid, .gerente__grid, .cases__grid) > .reveal:nth-child(5){ transition-delay:.32s; }
:is(.gerente__grid, .cases__grid) > .reveal:nth-child(6){ transition-delay:.40s; }
.gerente__grid > .reveal:nth-child(7){ transition-delay:.48s; }

.eyebrow--center{ justify-content:center; }

.abyss__disc{ animation:discGlow 7s ease-in-out infinite alternate; }
@keyframes discGlow{
  from{ box-shadow:0 30px 80px rgba(219,51,40,.26), 0 0 0 1px rgba(143,146,216,.08); }
  to{   box-shadow:0 34px 96px rgba(219,51,40,.42), 0 0 0 1px rgba(143,146,216,.14); }
}

.case:hover .case__icon img, .card:hover .card__icon{ transform:translateY(-3px) scale(1.06); }
.case__icon img, .card__icon{ transition:transform .35s ease; }

@media (prefers-reduced-motion: reduce){
  .abyss__disc{ animation:none; }
  :is(.problem__grid,.gerente__grid,.cases__grid,.plans__grid,.packs__grid,.abyss__stats) > .reveal{ transition-delay:0s !important; }
}

/* ==========================================================================
   TIME
   ========================================================================== */
.team__lead{
  text-align:center; color:var(--muted-dark);
  max-width:62ch; margin:0 auto 3rem;
}
.team__grid{
  list-style:none;
  display:grid; grid-template-columns:repeat(2, 1fr);
  gap:1.8rem 1.2rem;
  max-width:1100px; margin-inline:auto;
}
.member{ text-align:center; }
.member:last-child{ grid-column:1 / -1; max-width:220px; margin-inline:auto; }
.member__photo{ display:block; width:100%; max-width:200px; margin:0 auto 1rem; }
.member__photo img{
  width:100%; aspect-ratio:1/1; object-fit:cover;
  border-radius:50%;
  border:3px solid #fff;
  box-shadow:0 14px 36px rgba(40,46,80,.18);
  transition:transform .35s ease, box-shadow .35s ease;
}
.member:hover .member__photo img{
  transform:translateY(-5px) scale(1.03);
  box-shadow:0 22px 48px rgba(40,46,80,.26);
}
.member__name{ font-size:1.04rem; font-weight:600; color:var(--text-dark); }
.member__role{
  font-size:.72rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
  margin:.15rem 0 .45rem;
}
.member__bio{ font-size:.85rem; line-height:1.5; color:var(--muted-dark); max-width:30ch; margin-inline:auto; }

.footer__site{
  display:block; text-align:center;
  font-weight:700; font-size:1.05rem; color:#fff;
  margin-bottom:.8rem;
  transition:color .25s ease;
}
.footer__site:hover{ color:var(--coral); }

@media (min-width:900px){
  .team__grid{ grid-template-columns:repeat(5, 1fr); gap:2rem 1.4rem; }
  .member:last-child{ grid-column:auto; max-width:none; }
  .member__photo{ max-width:170px; }
}
:is(.team__grid) > .reveal:nth-child(2){ transition-delay:.08s; }
:is(.team__grid) > .reveal:nth-child(3){ transition-delay:.16s; }
:is(.team__grid) > .reveal:nth-child(4){ transition-delay:.24s; }
:is(.team__grid) > .reveal:nth-child(5){ transition-delay:.32s; }
