/* ============================================================
   Estilos específicos desta página
   Extraído do HTML para facilitar manutenção.
   ============================================================ */

:root {
  --green: #00C853;
  --green-dim: #00A844;
  --green-soft: rgba(0,200,83,0.10);
  --green-glow: rgba(0,200,83,0.18);
  --green-border: rgba(0,200,83,0.28);
  --gold: #C9A84C;
  --gold-soft: rgba(201,168,76,0.12);
  --bg: #080B0A;
  --bg-2: #0E1412;
  --bg-3: #0B100E;
  --bg-card: #111815;
  --bg-hover: #151F1A;
  --white: #F0F4F2;
  --muted-1: rgba(240,244,242,0.70);
  --muted-2: rgba(240,244,242,0.46);
  --muted-3: rgba(240,244,242,0.13);
  --muted-4: rgba(240,244,242,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-card: 0 30px 80px rgba(0,0,0,0.42);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 10%, rgba(0,200,83,0.10), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(201,168,76,0.08), transparent 22rem),
    var(--bg);
  color: var(--white);
  overflow-x: hidden;
}
body::before {
  content:'';
  position:fixed;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:1000;
  opacity:0.45;
}

/* Header compatibility with components.js */
nav{display:flex;justify-content:space-between;align-items:center;padding:1.4rem 2.5rem;position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(8,11,10,0.9);backdrop-filter:blur(20px);border-bottom:1px solid var(--muted-3);}
.logo{font-family:var(--font-display);font-weight:700;font-size:1.5rem;color:var(--white);letter-spacing:-0.5px;display:flex;align-items:center;gap:0.5rem;text-decoration:none;}
.logo-dot{width:7px;height:7px;background:var(--green);border-radius:50%;box-shadow:0 0 10px var(--green);animation:pulse 2s infinite;}
@keyframes pulse{0%,100%{opacity:1;box-shadow:0 0 8px var(--green);}50%{opacity:0.6;box-shadow:0 0 16px var(--green);}}
.nav-links{display:flex;gap:2.5rem;list-style:none;}
.nav-links a{color:var(--muted-1);text-decoration:none;font-size:0.875rem;font-weight:400;transition:color 0.2s;}
.nav-links a:hover{color:var(--white);}
.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:none;}
.nav-hamburger span{display:block;width:22px;height:2px;background:var(--white);border-radius:2px;transition:transform 0.25s,opacity 0.25s;}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-hamburger.open span:nth-child(2){opacity:0;}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.nav-mobile-menu{display:none;position:fixed;top:57px;left:0;right:0;background:rgba(8,11,10,0.97);backdrop-filter:blur(20px);border-bottom:1px solid var(--muted-3);padding:1.5rem 1.25rem;z-index:99;flex-direction:column;}
.nav-mobile-menu.open{display:flex;}
.nav-mobile-menu a{color:var(--muted-1);text-decoration:none;font-size:1rem;padding:0.9rem 0;border-bottom:1px solid var(--muted-3);transition:color 0.2s;}
.nav-mobile-menu a:last-child{border-bottom:none;}
.nav-mobile-menu a:hover{color:var(--white);}

.container {
  width: min(1200px, calc(100% - 5rem));
  margin: 0 auto;
}

.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:0.65rem;
  color:var(--green);
  font-size:0.72rem;
  letter-spacing:2.4px;
  text-transform:uppercase;
  font-weight:600;
}
.eyebrow::before {
  content:'';
  width:28px;
  height:1px;
  background:var(--green);
}
.section-title {
  font-family:var(--font-display);
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.08;
  letter-spacing:-1px;
  margin-top:0.85rem;
}
.section-title em { color:var(--green); font-style:italic; }
.section-desc {
  color:var(--muted-1);
  font-size:0.98rem;
  line-height:1.75;
  max-width:680px;
  margin-top:1rem;
  font-weight:300;
}

.btn-primary, .btn-secondary, .btn-ghost {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  text-decoration:none;
  font-family:var(--font-body);
  font-weight:700;
  font-size:0.92rem;
  border-radius:var(--radius-sm);
  transition:transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-primary {
  background:var(--green);
  color:#041009;
  padding:0.9rem 1.75rem;
  border:1px solid var(--green);
}
.btn-primary:hover {
  transform:translateY(-1px);
  box-shadow:0 12px 34px rgba(0,200,83,0.28);
  background:var(--green-dim);
}
.btn-secondary {
  background:var(--green-soft);
  color:var(--green);
  border:1px solid var(--green-border);
  padding:0.9rem 1.5rem;
}
.btn-secondary:hover { border-color:var(--green); background:rgba(0,200,83,0.14); }
.btn-ghost {
  color:var(--muted-1);
  padding:0.9rem 0.2rem;
}
.btn-ghost:hover { color:var(--white); }

/* HERO */
.hero {
  min-height: 100vh;
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items:center;
  gap:4rem;
  padding:8rem 0 4.5rem;
}
.hero h1 {
  font-family:var(--font-display);
  font-size:clamp(3rem,6vw,5.6rem);
  line-height:0.98;
  letter-spacing:-2.4px;
  margin-top:1.4rem;
  max-width:780px;
}
.hero h1 em { color:var(--green); font-style:italic; }
.hero-desc {
  color:var(--muted-1);
  font-size:1.08rem;
  line-height:1.8;
  max-width:610px;
  margin:1.65rem 0 2rem;
  font-weight:300;
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:1rem;
  flex-wrap:wrap;
}
.hero-proof {
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  margin-top:2.2rem;
}
.proof-pill {
  border:1px solid var(--muted-3);
  background:rgba(17,24,21,0.58);
  color:var(--muted-1);
  padding:0.55rem 0.8rem;
  border-radius:999px;
  font-size:0.78rem;
}
.proof-pill strong { color:var(--white); font-weight:600; }

.hero-panel {
  position:relative;
}
.hero-panel::before {
  content:'';
  position:absolute;
  inset:-1px;
  background:linear-gradient(135deg, rgba(0,200,83,0.34), rgba(201,168,76,0.11), transparent 62%);
  border-radius:28px;
  filter:blur(0px);
  opacity:0.75;
}
.hero-product-card {
  position:relative;
  background:linear-gradient(180deg, rgba(17,24,21,0.96), rgba(11,16,14,0.98));
  border:1px solid rgba(240,244,242,0.14);
  border-radius:28px;
  padding:1.35rem;
  box-shadow:var(--shadow-card);
  overflow:hidden;
}
.hero-product-card::after {
  content:'';
  position:absolute;
  top:-80px;
  right:-80px;
  width:180px;
  height:180px;
  background:radial-gradient(circle, rgba(0,200,83,0.16), transparent 70%);
  border-radius:50%;
}
.card-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  position:relative;
  z-index:1;
  margin-bottom:1.2rem;
}
.card-kicker {
  color:var(--muted-2);
  font-size:0.68rem;
  letter-spacing:1.6px;
  text-transform:uppercase;
}
.card-badge {
  border:1px solid var(--green-border);
  background:var(--green-soft);
  color:var(--green);
  border-radius:999px;
  padding:0.28rem 0.62rem;
  font-size:0.7rem;
  white-space:nowrap;
}
.featured-tool {
  position:relative;
  z-index:1;
  background:rgba(8,11,10,0.55);
  border:1px solid var(--muted-3);
  border-radius:22px;
  padding:1.35rem;
}
.featured-tool h2 {
  font-family:var(--font-display);
  font-size:1.75rem;
  line-height:1.08;
  margin-bottom:0.65rem;
}
.featured-tool p {
  color:var(--muted-1);
  font-size:0.9rem;
  line-height:1.65;
  margin-bottom:1.2rem;
}
.feature-metrics {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  border:1px solid var(--muted-3);
  background:var(--muted-3);
  border-radius:16px;
  overflow:hidden;
  margin:1.2rem 0;
}
.metric {
  background:var(--bg-2);
  padding:0.9rem;
}
.metric-value {
  font-family:var(--font-display);
  font-size:1.25rem;
  color:var(--white);
  line-height:1;
}
.metric-label {
  color:var(--muted-2);
  font-size:0.68rem;
  margin-top:0.35rem;
}
.mini-flow {
  display:grid;
  gap:0.65rem;
  margin-top:1.25rem;
}
.flow-row {
  display:flex;
  align-items:center;
  gap:0.7rem;
  color:var(--muted-1);
  font-size:0.82rem;
}
.flow-dot {
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--green-soft);
  border:1px solid var(--green-border);
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:0.68rem;
  font-weight:700;
  flex-shrink:0;
}

/* =====================================================
   AJUSTE 1: Intent section — INSS Spotlight fundidos
   A seção anterior tinha Intent separado + INSS Spotlight
   separado, repetindo o INSS 2x. Agora são uma só seção:
   o header da Intent apresenta o INSS como destaque,
   e as demais ferramentas ficam no grid abaixo.
   ===================================================== */
.intent-section {
  padding:3.5rem 0 5.5rem;
}
.intent-shell {
  background:linear-gradient(180deg, rgba(17,24,21,0.82), rgba(14,20,18,0.68));
  border:1px solid var(--muted-3);
  border-radius:28px;
  padding:2rem;
}
.intent-header {
  display:flex;
  justify-content:space-between;
  gap:2rem;
  align-items:flex-end;
  margin-bottom:1.4rem;
}
.intent-header h2 {
  font-family:var(--font-display);
  font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1.1;
  letter-spacing:-0.8px;
}
.intent-header p {
  color:var(--muted-1);
  max-width:450px;
  line-height:1.65;
  font-size:0.92rem;
}

/* Grid assimétrico: INSS ocupa coluna larga à esquerda,
   as outras 3 ferramentas ficam empilhadas à direita */
.intent-grid {
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:1px;
  background:var(--muted-3);
  border:1px solid var(--green-border);
  border-radius:20px;
  overflow:hidden;
}
.intent-grid-right {
  display:grid;
  grid-template-rows:repeat(3,1fr);
  gap:1px;
  background:var(--muted-3);
}
.intent-card {
  background:var(--bg-card);
  color:inherit;
  text-decoration:none;
  padding:1.35rem;
  display:flex;
  flex-direction:column;
  transition:background 0.25s;
}
.intent-card:hover { background:var(--bg-hover); }

/* Card principal do INSS — destaque visual */
.intent-card.intent-featured {
  padding:1.75rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(0,200,83,0.13), transparent 14rem),
    var(--bg-card);
  min-height:340px;
}
.intent-card.intent-featured:hover {
  background:
    radial-gradient(circle at 90% 10%, rgba(0,200,83,0.18), transparent 14rem),
    var(--bg-hover);
}
.intent-tag {
  display:inline-flex;
  width:fit-content;
  background:var(--gold-soft);
  border:1px solid rgba(201,168,76,0.28);
  color:var(--gold);
  padding:0.3rem 0.65rem;
  border-radius:999px;
  font-size:0.7rem;
  font-weight:600;
  margin-bottom:0.85rem;
}
.intent-card.intent-featured h3 {
  font-family:var(--font-display);
  font-size:clamp(1.5rem,2.4vw,2rem);
  line-height:1.12;
  margin-bottom:0.7rem;
}
.intent-card.intent-featured p {
  color:var(--muted-1);
  font-size:0.92rem;
  line-height:1.65;
  font-weight:300;
  max-width:400px;
}
.intent-featured-metrics {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  border:1px solid var(--muted-3);
  background:var(--muted-3);
  border-radius:14px;
  overflow:hidden;
  margin:1.25rem 0;
}
.intent-featured-metrics .metric {
  background:rgba(8,11,10,0.6);
}
.intent-icon {
  width:42px;
  height:42px;
  border-radius:13px;
  background:var(--green-soft);
  border:1px solid var(--green-border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  margin-bottom:1rem;
}
.intent-card h3 {
  font-family:var(--font-display);
  font-size:1.05rem;
  line-height:1.2;
  margin-bottom:0.45rem;
}
.intent-card p {
  color:var(--muted-1);
  font-size:0.82rem;
  line-height:1.55;
  font-weight:300;
}
.intent-arrow {
  margin-top:auto;
  color:var(--green);
  font-size:0.8rem;
  padding-top:1rem;
}

/* Tools */
.tools-section {
  padding:0 0 5.5rem;
}
.tools-header {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:2rem;
  margin-bottom:1.7rem;
}
.tools-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--muted-3);
  border:1px solid var(--muted-3);
  border-radius:22px;
  overflow:hidden;
}
.tool-card {
  background:var(--bg-card);
  color:inherit;
  text-decoration:none;
  padding:1.65rem;
  min-height:230px;
  position:relative;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition:background 0.25s;
}
.tool-card:hover { background:var(--bg-hover); }
.tool-card.featured {
  grid-column:span 2;
  background:
    radial-gradient(circle at 86% 22%, rgba(0,200,83,0.13), transparent 16rem),
    var(--bg-card);
}
.tool-card::after {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:var(--green);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.25s;
}
.tool-card:hover::after { transform:scaleX(1); }
.tool-icon {
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--green-soft);
  border:1px solid var(--green-border);
  font-size:1.25rem;
  margin-bottom:1rem;
}
.tool-card h3 {
  font-family:var(--font-display);
  font-size:1.25rem;
  line-height:1.2;
  margin-bottom:0.55rem;
}
.tool-card p {
  color:var(--muted-1);
  font-size:0.86rem;
  line-height:1.6;
  font-weight:300;
  max-width:520px;
}
.tool-meta {
  display:flex;
  gap:0.5rem;
  flex-wrap:wrap;
  margin-top:1rem;
}
.tool-chip {
  border:1px solid var(--muted-3);
  color:var(--muted-2);
  border-radius:999px;
  padding:0.25rem 0.55rem;
  font-size:0.68rem;
}
.tool-arrow {
  color:var(--green);
  margin-top:auto;
  padding-top:1.25rem;
  font-size:0.8rem;
}

/* Method */
.method-section {
  padding:0 0 5.5rem;
}
.method-grid {
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:3.5rem;
  align-items:start;
}
.method-list {
  display:grid;
  gap:1rem;
}
.method-item {
  display:grid;
  grid-template-columns:auto 1fr;
  gap:1rem;
  background:rgba(17,24,21,0.72);
  border:1px solid var(--muted-3);
  border-radius:18px;
  padding:1.25rem;
}
.method-number {
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--green-soft);
  color:var(--green);
  border:1px solid var(--green-border);
  font-weight:700;
  font-size:0.82rem;
}
.method-item h3 {
  font-size:1rem;
  margin-bottom:0.35rem;
}
.method-item p {
  color:var(--muted-1);
  font-size:0.84rem;
  line-height:1.6;
}

/* =====================================================
   AJUSTE 2: Prova social — seção de depoimentos
   ===================================================== */
.social-section {
  padding:0 0 5.5rem;
}
.social-header {
  margin-bottom:1.5rem;
}
.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--muted-3);
  border:1px solid var(--muted-3);
  border-radius:22px;
  overflow:hidden;
}
.testimonial-card {
  background:var(--bg-card);
  padding:1.65rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.testimonial-stars {
  color:var(--gold);
  font-size:0.82rem;
  letter-spacing:2px;
}
.testimonial-text {
  color:var(--muted-1);
  font-size:0.9rem;
  line-height:1.7;
  font-weight:300;
  flex:1;
}
.testimonial-author {
  display:flex;
  align-items:center;
  gap:0.75rem;
  padding-top:0.5rem;
  border-top:1px solid var(--muted-3);
}
.author-avatar {
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--green-soft);
  border:1px solid var(--green-border);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green);
  font-size:0.75rem;
  font-weight:700;
  flex-shrink:0;
}
.author-name {
  font-size:0.82rem;
  font-weight:600;
  color:var(--white);
}
.author-role {
  font-size:0.75rem;
  color:var(--muted-2);
  margin-top:0.15rem;
}

/* CTA */
.cta-final {
  padding:0 0 5.5rem;
}
.cta-inner {
  background:
    radial-gradient(circle at 90% 10%, rgba(0,200,83,0.18), transparent 20rem),
    linear-gradient(135deg, #0E1F15, #0A1410);
  border:1px solid var(--green-border);
  border-radius:30px;
  padding:3rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  overflow:hidden;
}
.cta-inner h2 {
  font-family:var(--font-display);
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.08;
  letter-spacing:-1px;
}
.cta-inner p {
  color:var(--muted-1);
  margin-top:0.75rem;
  line-height:1.6;
}

/* Footer compatibility */
footer{border-top:1px solid var(--muted-3);padding:2rem 2.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;max-width:1200px;margin:0 auto;}
.footer-links{display:flex;gap:1.5rem;}
.footer-links a{color:var(--muted-2);text-decoration:none;font-size:0.8rem;transition:color 0.2s;}
.footer-links a:hover{color:var(--green);}
.footer-copy{color:var(--muted-2);font-size:0.75rem;}

/* Light mode support */
html.light-mode body,
html[data-theme="light"] body {
  background:#F4F7F5;
  color:#132019;
}
html.light-mode .hero-product-card,
html.light-mode .featured-tool,
html.light-mode .intent-shell,
html.light-mode .intent-card,
html.light-mode .tool-card,
html.light-mode .method-item,
html.light-mode .testimonial-card,
html[data-theme="light"] .hero-product-card,
html[data-theme="light"] .featured-tool,
html[data-theme="light"] .intent-shell,
html[data-theme="light"] .intent-card,
html[data-theme="light"] .tool-card,
html[data-theme="light"] .method-item,
html[data-theme="light"] .testimonial-card {
  background:#FFFFFF;
}
html.light-mode .section-desc,
html.light-mode .hero-desc,
html.light-mode .intent-header p,
html.light-mode .intent-card p,
html.light-mode .tool-card p,
html.light-mode .method-item p,
html.light-mode .cta-inner p,
html.light-mode .testimonial-text,
html[data-theme="light"] .section-desc,
html[data-theme="light"] .hero-desc,
html[data-theme="light"] .intent-header p,
html[data-theme="light"] .intent-card p,
html[data-theme="light"] .tool-card p,
html[data-theme="light"] .method-item p,
html[data-theme="light"] .cta-inner p,
html[data-theme="light"] .testimonial-text {
  color:rgba(19,32,25,0.68);
}
html.light-mode .metric,
html[data-theme="light"] .metric {
  background:#F5F8F6;
}
html.light-mode .proof-pill,
html[data-theme="light"] .proof-pill {
  background:#FFFFFF;
  color:rgba(19,32,25,0.68);
}
html.light-mode .proof-pill strong,
html[data-theme="light"] .proof-pill strong {
  color:#132019;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns:1fr;
    min-height:auto;
    padding-top:7rem;
  }
  .hero-panel { max-width:680px; }
  .intent-grid { grid-template-columns:1fr; }
  .intent-grid-right { grid-template-rows:auto; grid-template-columns:1fr; }
  .intent-card.intent-featured { min-height:auto; }
  .tools-grid { grid-template-columns:repeat(2,1fr); }
  .tool-card.featured { grid-column:span 2; }
  .method-grid { grid-template-columns:1fr; gap:2rem; }
  .testimonials-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 768px) {
  nav{padding:1rem 1.25rem;}
  .nav-links{display:none;}
  .nav-hamburger{display:flex;}
  .container { width:calc(100% - 2.5rem); }
  .hero { padding:6.25rem 0 3.5rem; gap:2rem; }
  .hero h1 { font-size:clamp(2.65rem,14vw,4rem); letter-spacing:-1.5px; }
  .hero-desc { font-size:0.98rem; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .btn-primary, .btn-secondary { width:100%; }
  .btn-ghost { width:100%; padding:0.85rem; }
  .feature-metrics { grid-template-columns:1fr; }
  .intent-section { padding:1.5rem 0 4rem; }
  .intent-shell { padding:1.25rem; border-radius:22px; }
  .intent-header { flex-direction:column; align-items:flex-start; }
  .intent-featured-metrics { grid-template-columns:1fr; }
  .tools-header { flex-direction:column; align-items:flex-start; }
  .tools-grid { grid-template-columns:1fr; }
  .tool-card.featured { grid-column:span 1; }
  .testimonials-grid { grid-template-columns:1fr; }
  .cta-inner { padding:2rem 1.35rem; flex-direction:column; align-items:flex-start; }
  .cta-inner .btn-primary { width:100%; }
  footer{flex-direction:column;align-items:flex-start;padding:2rem 1.25rem;gap:1.2rem;}
  .footer-links{flex-wrap:wrap;gap:1rem;}
}

@media (max-width: 420px) {
  .hero-product-card { padding:1rem; border-radius:22px; }
  .featured-tool { padding:1rem; }
  .featured-tool h2 { font-size:1.45rem; }
}

/* ============================================================
   SCROLL REVEAL GLOBAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.93) translateY(18px); }
[data-reveal].is-visible          { opacity:1; transform:translateY(0); }
[data-reveal="left"].is-visible   { opacity:1; transform:translateX(0); }
[data-reveal="right"].is-visible  { opacity:1; transform:translateX(0); }
[data-reveal="scale"].is-visible  { opacity:1; transform:scale(1) translateY(0); }

/* ============================================================
   SEÇÃO EDUCAÇÃO — FEED DE ARTIGOS
   Layout: 4 cards em linha, cada um vertical/independente,
   sem container enclausurante. Fundo com parallax de palavras.
   ============================================================ */
.edu-section {
  position: relative;
  padding: 0 0 5.5rem;
  overflow: hidden;
}

/* Camada de parallax — palavras gigantes no fundo */
.edu-parallax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.edu-bg-word {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,200,83,0.07);
  user-select: none;
  white-space: nowrap;
  will-change: transform;
  line-height: 1;
}
.edu-bg-word-1 { font-size: clamp(7rem,16vw,15rem); top:-1rem; left:-2rem; }
.edu-bg-word-2 { font-size: clamp(4rem,10vw,9rem);  top:40%;  right:-3rem; -webkit-text-stroke-color: rgba(201,168,76,0.06); }
.edu-bg-word-3 { font-size: clamp(3rem,7vw,6rem);   bottom:6%; left:15%; }

/* Partículas flutuantes */
.edu-particle {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(0,200,83,0.14);
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

/* Conteúdo sobre o parallax */
.edu-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 5rem));
  margin: 0 auto;
}

.edu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.8rem;
}
.edu-header p {
  color: var(--muted-1);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 380px;
  font-weight: 300;
}
.edu-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--green-border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.edu-all-link:hover { background: var(--green-soft); transform: translateX(3px); }

/* Feed — carrossel de 6 cards */
.edu-carousel-wrap {
  position: relative;
}
.edu-feed {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  cursor: grab;
}
.edu-feed:active { cursor: grabbing; }
.edu-feed::-webkit-scrollbar { display: none; }
.edu-card {
  flex: 0 0 calc(25% - 1rem);
  min-width: 260px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--muted-3);
  border-radius: 20px;
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.28s, transform 0.28s, border-color 0.28s;
}
.edu-card:hover {
  background: var(--bg-hover);
  border-color: var(--green-border);
  transform: translateY(-4px);
}
/* Barra verde animada no topo */
.edu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.edu-card:hover::before { transform: scaleX(1); }

/* Card em destaque */
.edu-card.edu-featured {
  background:
    radial-gradient(ellipse at 90% 0%, rgba(0,200,83,0.11), transparent 55%),
    var(--bg-card);
  border-color: rgba(0,200,83,0.2);
}
.edu-card.edu-featured:hover {
  background:
    radial-gradient(ellipse at 90% 0%, rgba(0,200,83,0.17), transparent 55%),
    var(--bg-hover);
}

/* Controles do carrossel */
.edu-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.edu-carousel-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--muted-3);
  background: var(--bg-card);
  color: var(--muted-1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.edu-carousel-btn:hover:not(:disabled) {
  border-color: var(--green-border);
  color: var(--green);
  background: var(--green-soft);
}
.edu-carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.edu-carousel-btn svg { width: 16px; height: 16px; }
.edu-carousel-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.edu-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted-3);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.edu-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

.edu-card-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
}
.edu-card-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.edu-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 0.8rem;
}
.edu-card.edu-featured h3 {
  font-size: 1.3rem;
}

.edu-card-teaser {
  color: var(--muted-1);
  font-size: 0.86rem;
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

/* Trecho em destaque só no card principal */
.edu-card-quote {
  margin-top: 1.25rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--green);
  color: var(--muted-2);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.6;
}

.edu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--muted-3);
}
.edu-card-meta {
  font-size: 0.7rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.edu-card-meta span { color: var(--muted-3); }
.edu-read {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.edu-card:hover .edu-read { gap: 0.55rem; }

@media (max-width: 1024px) {
  .edu-card { flex: 0 0 calc(50% - 0.65rem); }
  .edu-bg-word { opacity: 0.6; }
}
@media (max-width: 768px) {
  .edu-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .edu-card { flex: 0 0 calc(85vw); min-width: 0; }
  .edu-content { width: calc(100% - 2.5rem); }
  .edu-bg-word { display: none; }
  .edu-particle { display: none; }
}

/* Light mode */
html.light-mode .edu-card,
html[data-theme="light"] .edu-card { background: #FFFFFF; }
html.light-mode .edu-card-teaser,
html[data-theme="light"] .edu-card-teaser { color: rgba(19,32,25,0.68); }
html.light-mode .edu-bg-word,
html[data-theme="light"] .edu-bg-word { -webkit-text-stroke-color: rgba(0,140,50,0.06); }

/* CTA light mode — fundo claro com texto escuro */
html.light-mode .cta-inner,
html[data-theme="light"] .cta-inner {
  background:
    radial-gradient(circle at 90% 10%, rgba(0,200,83,0.14), transparent 20rem),
    linear-gradient(135deg, #D6EFE0, #E8F5EC);
  border-color: rgba(0,200,83,0.35);
}
html.light-mode .cta-inner h2,
html[data-theme="light"] .cta-inner h2 {
  color: #0A1F12;
}
html.light-mode .cta-inner p,
html[data-theme="light"] .cta-inner p {
  color: rgba(10,31,18,0.65);
}
html.light-mode .cta-inner .btn-ghost,
html[data-theme="light"] .cta-inner .btn-ghost {
  color: rgba(10,31,18,0.55);
}
html.light-mode .cta-inner .btn-ghost:hover,
html[data-theme="light"] .cta-inner .btn-ghost:hover {
  color: #0A1F12;
}
