/* =====================
   RESET & TOKENS
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Light/clean palette (alinhada com app) — nomes legados preservados */
  --navy:    #F9FAFB;   /* bg geral (era dark navy) */
  --navy-l:  #FFFFFF;   /* panels/cards (era #112240) */
  --navy-ll: #F3F4F6;   /* sections (era #172A45) */
  --green:   #15803D;   /* primary (era neon #39FF14) */
  --green-d: #15803D;   /* hover (era #2bd910) */
  --green-bright: #22C55E; /* gradient stop / acento mais vivo */
  --white:   #111827;   /* texto principal (era #FFF) — INVERTE */
  --gray:    #6B7280;   /* texto secundário */
  --gray-l:  #111827;   /* texto forte (headings) */
  --border:  #E5E7EB;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon { font-size: 22px; }
.logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-left: 48px;
}

.nav-logo { margin-right: 24px; }

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.btn-nav-entrar {
  color: var(--gray-l) !important;
  border: 1px solid var(--border) !important;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px !important;
  font-weight: 600 !important;
}

.btn-nav-entrar:hover {
  border-color: var(--green) !important;
  color: var(--green) !important;
}

.btn-nav-demo {
  background: var(--green) !important;
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.btn-nav-demo:hover { background: var(--green-d) !important; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-l);
  border-radius: 2px;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--navy);
  gap: 14px;
}

.nav-mobile-menu a {
  text-decoration: none;
  color: var(--gray);
  font-size: 15px;
  font-weight: 500;
}

.nav-mobile-menu .mobile-cta {
  color: var(--navy) !important;
  background: var(--green);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  text-align: center;
}

.nav-mobile-menu.open { display: flex; }

@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* =====================
   BUTTONS
   ===================== */
.btn-cta-green {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green) 60%, var(--green-d) 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 18px rgba(21, 128, 61,0.28), 0 2px 4px rgba(21, 128, 61,0.18);
  letter-spacing: 0.2px;
  border: none;
}

.btn-cta-green:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(21, 128, 61,0.38), 0 4px 8px rgba(21, 128, 61,0.22);
}

.btn-cta-green.large {
  padding: 16px 40px;
  font-size: 17px;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--gray-l);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

/* =====================
   SECTION HELPERS
   ===================== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-d);
  margin-bottom: 16px;
  position: relative;
  padding-left: 22px;
}

.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-bright), var(--green-d));
  border-radius: 2px;
}

.section-tag.center { padding-left: 0; }
.section-tag.center::before { display: none; }

.section-tag.center { display: block; text-align: center; }

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 48px;
}

.section-title.center { text-align: center; }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  position: relative;
}

/* Subtle green-tinted ambient glow behind the hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% 20%, rgba(21, 128, 61,0.10), transparent 60%),
    radial-gradient(700px 420px at 88% 80%, rgba(34,197,94,0.07), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Stadium variant: full-bleed background image with hologram on the right */
.hero.hero-stadium {
  max-width: none;
  padding: 140px 8vw 100px;
  isolation: isolate;
}
.hero.hero-stadium::before { display: none; }
.hero-stadium-bg {
  position: absolute;
  inset: 0;
  background-image: url("/hero-stadium-tablet.webp");
  background-image: -webkit-image-set(url("/hero-stadium-tablet.webp") 1x);
  background-image: image-set(url("/hero-stadium-tablet.webp") type("image/webp"), url("/hero-stadium-tablet.jpg") type("image/jpeg"));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0b1322;
  z-index: -2;
}
.hero-stadium-bg::after { content: none; }
.hero-stadium-overlay {
  position: absolute;
  inset: 0;
  /* Sombra suave só atrás do texto à esquerda; resto da imagem fica natural. */
  background:
    linear-gradient(
      90deg,
      rgba(8,15,28,0.55) 0%,
      rgba(8,15,28,0.35) 28%,
      rgba(8,15,28,0.10) 48%,
      rgba(8,15,28,0) 60%
    );
  z-index: -1;
}
/* Texto da hero confinado à metade esquerda pra não sobrepor o tablet/holograma */
.hero.hero-stadium .hero-container {
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
}
.hero.hero-stadium .hero-title,
.hero.hero-stadium .hero-subtitle,
.hero.hero-stadium .proof-num,
.hero.hero-stadium .proof-label {
  color: #fff;
}
.hero.hero-stadium .hero-title {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
}
.hero.hero-stadium .hero-tagline {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}
.hero.hero-stadium .hero-subtitle { color: rgba(255,255,255,0.88); }
.hero.hero-stadium .proof-label   { color: rgba(255,255,255,0.72); }
.hero.hero-stadium .hero-badge    {
  background: linear-gradient(90deg, rgba(34,197,94,0.22), rgba(21,128,61,0.14));
  border-color: rgba(74,222,128,0.5);
  color: #4ade80;
}
.hero.hero-stadium .btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(8,15,28,0.35);
  backdrop-filter: blur(4px);
}
.hero.hero-stadium .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* Headline editorial posicionada acima do tablet/holograma (lado direito) */
.hero-tagline-block {
  position: absolute;
  top: 26%;
  left: 70%;
  transform: translateX(-50%);
  z-index: 1;
  width: min(440px, 38vw);
  pointer-events: none;
  text-align: center;
}
.hero-tagline-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(74,222,128,0.45);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-tagline-headline {
  display: block;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  font-size: clamp(20px, 2vw, 30px);
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.75), 0 0 28px rgba(0,0,0,0.5);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
.hero-tagline-headline .htl-accent {
  background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}

/* ---------- RESPONSIVIDADE HERO ---------- */

/* Tablet — reduz padding e ajusta tagline */
@media (max-width: 1100px) {
  .hero.hero-stadium { padding: 130px 6vw 90px; }
  .hero.hero-stadium .hero-container { max-width: 480px; }
  .hero-tagline-block { top: 22%; left: 70%; width: min(380px, 44vw); }
  .hero-tagline-headline { font-size: clamp(18px, 2.2vw, 24px); }
}

/* Mobile — empilha texto, esconde tagline flutuante, escurece fundo */
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { display: none; }
  .hero.hero-stadium { padding: 100px 20px 60px; min-height: auto; }
  .hero.hero-stadium .hero-container { max-width: 100%; }
  .hero-stadium-bg { background-position: 65% center; }
  .hero-stadium-overlay {
    background: linear-gradient(180deg, rgba(8,15,28,0.82) 0%, rgba(8,15,28,0.9) 100%);
  }
  .hero-tagline-block { display: none; }
  .hero-title { font-size: clamp(40px, 9vw, 56px) !important; }
  .hero-subtitle { font-size: 15px !important; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn-cta-green,
  .hero-ctas .btn-ghost { width: 100%; text-align: center; }
  .hero-proof { gap: 16px; flex-wrap: wrap; }
  .proof-sep { display: none; }
}

.hero-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(34,197,94,0.14), rgba(21, 128, 61,0.08));
  border: 1px solid rgba(21, 128, 61,0.32);
  color: var(--green-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(21, 128, 61,0.10);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0F172A 0%, #15803D 60%, #15803D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-d) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-tagline {
  display: block;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 8px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.proof-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.proof-plus {
  font-size: 20px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-d));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 900;
}

.proof-label {
  font-size: 12px;
  color: var(--gray);
}

.proof-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero visual card */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hv-card {
  background: var(--navy-l);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 24px 48px -16px rgba(15,23,42,0.18),
    0 8px 24px -8px rgba(21, 128, 61,0.18);
  transform: translateZ(0);
}

.hv-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--navy-ll);
  border-bottom: 1px solid var(--border);
}

.hv-dots { display: flex; gap: 6px; }
.hv-dots span { width: 11px; height: 11px; border-radius: 50%; }
.hv-dots span:nth-child(1) { background: #ff5f57; }
.hv-dots span:nth-child(2) { background: #febc2e; }
.hv-dots span:nth-child(3) { background: #28c840; }

.hv-title {
  flex: 1;
  font-size: 12px;
  color: var(--gray);
  margin-left: 8px;
}

.hv-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.hv-online {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}

.hv-body { padding: 20px; }

.hv-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.hv-stat {
  flex: 1;
  background: var(--navy-ll);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.hv-stat.accent { border-color: rgba(21, 128, 61,0.3); background: rgba(21, 128, 61,0.05); }

.hv-n {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hv-stat.accent .hv-n { color: var(--green); }

.hv-l {
  display: block;
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
}

.hv-chart-label {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.hv-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  margin-bottom: 16px;
}

.hv-bar {
  flex: 1;
  background: var(--navy-ll);
  border-radius: 4px 4px 0 0;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2px;
}

.hv-bar.hi { background: rgba(21, 128, 61,0.15); border-color: rgba(21, 128, 61,0.4); }

.hv-bar span { font-size: 9px; color: var(--gray); position: absolute; bottom: -16px; }

.hv-alerts { display: flex; flex-direction: column; gap: 7px; margin-top: 20px; }

.hv-alert {
  font-size: 11px;
  padding: 7px 10px;
  border-radius: 6px;
  border-left: 2px solid;
}

.hv-alert.warn { background: rgba(255,152,0,0.1); color: rgba(255,152,0,0.9); border-color: rgba(255,152,0,0.5); }
.hv-alert.ok { background: rgba(21, 128, 61,0.08); color: rgba(21, 128, 61,0.9); border-color: rgba(21, 128, 61,0.4); }

/* =====================
   IMPACTO / RESULTADOS
   ===================== */
.section-impacto {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid #eef0f4;
  position: relative;
  overflow: hidden;
}
.section-impacto::before,
.section-impacto::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  opacity: 0.7;
  pointer-events: none;
}
.section-impacto::before { top: 80px; left: -110px; }
.section-impacto::after  { bottom: 80px; right: -110px; }

.impacto-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #15803D;
  margin-bottom: 14px;
}
.impacto-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.8px;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.15;
}
.impacto-sub {
  text-align: center;
  font-size: 16px;
  color: #475569;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.impacto-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.impacto-row-3 { grid-template-columns: 1fr 1.15fr 1fr; }
.impacto-row-2 { grid-template-columns: 1.1fr 1fr; }

.imp-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.imp-card:hover {
  border-color: #c7d2db;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}

.imp-card-featured {
  position: relative;
  border: 2px solid #22c55e;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 70%);
  box-shadow: 0 12px 36px rgba(21,128,61,0.10);
}
.imp-feat-tag {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #15803D;
  background: transparent;
}
.imp-card-featured .imp-head { margin-top: 18px; }

.imp-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.imp-ico {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imp-card-featured .imp-ico {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #dcfce7;
  border-color: #86efac;
}
.imp-head h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0;
}
.imp-card-featured .imp-head h3 { font-size: 20px; }

.imp-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.imp-card-featured .imp-desc { text-align: center; }
.imp-card-featured .imp-head { justify-content: center; flex-direction: row; }

/* Visual blocks dentro dos cards */
.imp-viz {
  margin-top: auto;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  padding: 14px 16px;
}
.imp-card-featured .imp-viz { border-color: #d1fae5; background: #ffffff; }

.imp-viz-spark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
}
.imp-viz-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 14px 18px;
}
.imp-viz-cell { display: flex; flex-direction: column; gap: 4px; }

.imp-viz-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
}
.imp-viz-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}
.imp-viz-num {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.imp-trend {
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
}
.imp-trend.small { font-size: 11px; }
.imp-trend.up::before { content: ""; }

.imp-spark { width: 100%; height: 36px; display: block; }

.imp-bar {
  margin-top: 8px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}
.imp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #15803D);
  border-radius: 999px;
}

.imp-viz-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border-color: #eef0f4;
}
.imp-alert-ico {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imp-alert-text { display: flex; flex-direction: column; line-height: 1.3; }
.imp-alert-text strong { font-size: 14px; color: #0f172a; font-weight: 700; }
.imp-alert-text span { font-size: 12px; color: #64748b; }
.imp-alert-arrow { margin-left: auto; color: #94a3b8; font-size: 22px; line-height: 1; }

.imp-card-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.imp-deplist {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.imp-deplist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #1e293b;
  font-weight: 500;
}
.imp-deplist-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  position: relative;
}
.imp-deplist-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #22c55e;
  border-radius: 2px;
}

/* Stats inferiores */
.impacto-stats {
  margin-top: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.imp-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.imp-stat-ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imp-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  display: block;
  line-height: 1.05;
}
.imp-stat span { font-size: 12px; color: #64748b; }

/* ---------- Responsivo IMPACTO ---------- */
@media (max-width: 1100px) {
  .impacto-row-3 { grid-template-columns: 1fr; }
  .impacto-row-2 { grid-template-columns: 1fr; }
  .impacto-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section-impacto { padding: 72px 0; }
  .impacto-sub { font-size: 15px; margin-bottom: 36px; padding: 0 8px; }
  .imp-card { padding: 22px; }
  .imp-card-split { grid-template-columns: 1fr; gap: 16px; }
  .imp-viz-double { grid-template-columns: 1fr; gap: 12px; }
  .impacto-stats { grid-template-columns: 1fr 1fr; padding: 18px; }
  .imp-stat strong { font-size: 20px; }
  .section-impacto::before,
  .section-impacto::after { display: none; }
}
@media (max-width: 420px) {
  .impacto-stats { grid-template-columns: 1fr; }
}

/* =====================
   PROBLEMAS
   ===================== */
.section-problemas {
  padding: 100px 0;
  background: #f5f7fa;
}

.prob-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) { .prob-inner { grid-template-columns: 1fr; } }

.section-problemas .section-tag {
  color: #15803D;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-problemas .section-tag::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #15803D;
}

.prob-text h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
  line-height: 1.2;
  color: #0f172a;
}

.prob-lista {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prob-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.prob-x {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 4px;
  background: #c1272d;
  margin-top: 4px;
}

.prob-item strong { color: #0f172a; font-size: 17px; display: block; margin-bottom: 4px; font-weight: 700; }
.prob-item p { color: #475569; font-size: 14px; margin: 0; line-height: 1.6; }

.prob-cta-box {
  position: sticky;
  top: 80px;
}

.pcb-inner {
  background: var(--navy-l);
  border: 1px solid rgba(21, 128, 61,0.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: 0 0 40px rgba(21, 128, 61,0.05);
}

.pcb-inner.pcb-green {
  background: linear-gradient(160deg, #1f9e4a 0%, #15803D 60%, #0f6a31 100%);
  border: none;
  text-align: center;
  padding: 56px 40px;
  box-shadow: 0 20px 50px rgba(15, 106, 49, 0.25);
}

.pcb-inner.pcb-green .pcb-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.pcb-inner.pcb-green h3 {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}
.pcb-inner.pcb-green p {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.pcb-icon { font-size: 36px; margin-bottom: 16px; }

.pcb-inner h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
  line-height: 1.3;
}

.pcb-inner p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn-cta-white {
  display: inline-block;
  background: #4ade80;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform 0.15s, background 0.15s;
}
.btn-cta-white:hover { background: #22c55e; transform: translateY(-1px); }

/* =====================
   SOLUÇÃO
   ===================== */
.section-solucao {
  padding: 100px 0;
  background: #f7f9fb;
  border-top: 1px solid #eef0f4;
  border-bottom: 1px solid #eef0f4;
  position: relative;
  overflow: hidden;
}
.section-solucao::before,
.section-solucao::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px dashed #cbd5e1;
  opacity: 0.55;
  pointer-events: none;
  transform: translateY(-50%);
}
.section-solucao::before { left: -190px; }
.section-solucao::after  { right: -190px; }

.sol-eyebrow {
  color: #15803D !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.sol-title {
  color: #0f172a;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.sol-title-hl {
  background: linear-gradient(135deg, #22c55e 0%, #15803D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.sol-sub {
  text-align: center;
  font-size: 16px;
  color: #475569;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.solucao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) { .solucao-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .solucao-grid { grid-template-columns: 1fr; } }

.sol-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.sol-card:hover {
  border-color: #c7d2db;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}

.sol-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sol-ico {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
  line-height: 1.2;
}
.sol-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.sol-viz {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sol-viz-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sv-mini {
  background: #f8fafc;
  border: 1px solid #eef0f4;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sv-label {
  font-size: 10.5px;
  color: #64748b;
  font-weight: 600;
}
.sv-num-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.sv-num-row strong {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.sv-trend { font-size: 11px; font-weight: 700; color: #16a34a; }
.sv-muted { font-size: 11px; color: #64748b; font-weight: 600; }
.sv-meta { font-size: 10px; color: #64748b; line-height: 1.4; }

/* Próximo jogo */
.sv-match {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 0;
}
.sv-shield {
  display: inline-block;
  width: 22px; height: 26px;
  background: #15803D;
  clip-path: polygon(50% 0, 100% 20%, 100% 60%, 50% 100%, 0 60%, 0 20%);
}
.sv-shield-b { background: #1e40af; }
.sv-x { color: #94a3b8; font-size: 12px; font-weight: 700; }

/* Pitch mini */
.sv-pitch {
  position: relative;
  background: linear-gradient(180deg, #15803D 0%, #166534 100%);
  border-radius: 6px;
  height: 78px;
  border: 1px solid #14532d;
  overflow: hidden;
}
.sv-pitch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.25) 49.5%, rgba(255,255,255,0.25) 50.5%, transparent 50.5%);
}
.sv-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #fbbf24;
  border-radius: 50%;
  border: 1px solid #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.sv-cats { display: flex; flex-direction: column; gap: 6px; }
.sv-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.sv-pill {
  font-size: 11px;
  font-weight: 700;
  color: #15803D;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  padding: 3px 10px;
  border-radius: 999px;
}

/* Carga semanal — bars */
.sv-bars { background: #f8fafc; border: 1px solid #eef0f4; border-radius: 10px; padding: 12px; }
.sv-bars-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.sv-tag { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.sv-tag-warn { background: #fef3c7; color: #b45309; }
.sv-bars-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  align-items: end;
  height: 60px;
}
.sv-bar { display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.sv-bar span { display: block; width: 100%; max-width: 14px; background: linear-gradient(180deg, #22c55e, #15803D); border-radius: 3px 3px 0 0; min-height: 4px; }
.sv-bar em { font-size: 9px; color: #64748b; font-style: normal; font-weight: 600; }
.sv-stats2 { gap: 8px; }

/* Lista operação */
.sv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #f8fafc;
  border: 1px solid #eef0f4;
  border-radius: 10px;
  font-size: 12.5px;
  color: #1e293b;
}
.sv-list-ico {
  width: 22px; height: 22px;
  background: #f0fdf4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1fae5;
}
.sv-list-text { flex: 1; font-weight: 500; }
.sv-list-num {
  font-weight: 800;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 11.5px;
  min-width: 24px;
  text-align: center;
}
.sv-link {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #15803D;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}
.sv-link:hover { background: #dcfce7; }

/* Donut + contratos */
.sv-donut-row {
  background: #f8fafc;
  border: 1px solid #eef0f4;
  border-radius: 10px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 8px;
  align-items: center;
}
.sv-donut-row > .sv-mini {
  background: transparent;
  border: none;
  padding: 0;
}
.sv-donut { width: 56px; height: 56px; grid-row: 1 / span 2; grid-column: 2; align-self: center; }
.sv-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  grid-column: 1;
}
.sv-legend li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #475569;
}
.sv-leg-dot { width: 8px; height: 8px; border-radius: 50%; }
.sv-legend em { margin-left: auto; font-style: normal; font-weight: 700; color: #0f172a; }

.sv-contracts {
  background: #f8fafc;
  border: 1px solid #eef0f4;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sv-contract {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: #1e293b;
  padding-top: 4px;
  border-top: 1px solid #eef0f4;
}
.sv-contract:first-of-type { border-top: none; padding-top: 0; }
.sv-contract em { font-style: normal; color: #64748b; font-weight: 600; }

/* Stats inferiores */
.sol-stats {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.sol-stat { display: flex; align-items: center; gap: 14px; }
.sol-stat-ico {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 10px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: flex; align-items: center; justify-content: center;
}
.sol-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  display: block;
  line-height: 1.05;
  margin-bottom: 2px;
}
.sol-stat span { font-size: 11.5px; color: #64748b; line-height: 1.3; }

@media (max-width: 1100px) {
  .sol-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section-solucao { padding: 72px 0; }
  .sol-sub { font-size: 15px; margin-bottom: 36px; padding: 0 8px; }
  .section-solucao::before, .section-solucao::after { display: none; }
}
@media (max-width: 420px) {
  .sol-stats { grid-template-columns: 1fr; }
}

/* Faixa de departamentos integrados (rodapé exclusivo da seção SOLUÇÃO) */
.sol-depts {
  margin-top: 28px;
  background: linear-gradient(135deg, #15803D 0%, #166534 100%);
  border-radius: 16px;
  padding: 22px 28px;
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(21,128,61,.18);
}
.sol-depts-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.sol-depts-head strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.3px;
}
.sol-depts-head span {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
.sol-depts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sol-dept {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background .15s, transform .15s;
}
.sol-dept:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-1px);
}
.sol-dept svg {
  background: #fff;
  border-radius: 4px;
  padding: 2px;
  width: 18px;
  height: 18px;
}
@media (max-width: 760px) {
  .sol-depts { padding: 18px 18px; }
  .sol-depts-head { gap: 6px; flex-direction: column; align-items: flex-start; }
  .sol-depts-head strong { font-size: 16px; }
  .sol-dept { font-size: 11.5px; padding: 6px 10px; }
}

/* =====================
   FUNCIONALIDADES
   ===================== */
.section-funcionalidades {
  padding: 100px 0;
  background: #f7f9fb;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eef0f4;
  border-bottom: 1px solid #eef0f4;
}
.section-funcionalidades::before,
.section-funcionalidades::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px dashed #cbd5e1;
  opacity: .55;
  pointer-events: none;
  transform: translateY(-50%);
}
.section-funcionalidades::before { left: -190px; }
.section-funcionalidades::after  { right: -190px; }

.fn-eyebrow {
  color: #15803D !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.fn-title {
  color: #0f172a;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.fn-title-hl {
  background: linear-gradient(135deg, #22c55e 0%, #15803D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.fn-sub {
  text-align: center;
  font-size: 16px;
  color: #475569;
  max-width: 660px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.func-blocos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) { .func-blocos { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .func-blocos { grid-template-columns: 1fr; } }

.func-bloco {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.func-bloco:hover {
  border-color: #c7d2db;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}

.fb-head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.fb-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: flex; align-items: center; justify-content: center;
}
.fb-watermark {
  position: absolute;
  top: -4px;
  right: -4px;
  pointer-events: none;
}
.fb-head h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  flex: 1;
  line-height: 1.2;
}
.fb-rule {
  display: block;
  width: 32px;
  height: 2px;
  background: #15803D;
  border-radius: 2px;
  flex-basis: 100%;
  margin-top: 2px;
}

.fb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fb-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #1e293b;
  line-height: 1.4;
}
.fb-tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.fb-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #f8fafc;
  border: 1px solid #eef0f4;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  transition: background .15s, border-color .15s;
}
.fb-cta:hover {
  background: #f0fdf4;
  border-color: #d1fae5;
}
.fb-cta-ico {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fb-cta-arrow {
  margin-left: auto;
  color: #94a3b8;
  font-size: 18px;
  font-weight: 600;
}

/* Benefícios inferiores */
.fn-benefits {
  margin-top: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.fn-benefit { display: flex; align-items: center; gap: 14px; }
.fn-benefit-ico {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: flex; align-items: center; justify-content: center;
}
.fn-benefit strong {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
  display: block;
  margin-bottom: 2px;
  line-height: 1.2;
}
.fn-benefit span { font-size: 11.5px; color: #64748b; line-height: 1.35; }

@media (max-width: 1100px) {
  .fn-benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section-funcionalidades { padding: 72px 0; }
  .fn-sub { font-size: 15px; margin-bottom: 36px; padding: 0 8px; }
  .section-funcionalidades::before, .section-funcionalidades::after { display: none; }
  .fb-watermark { display: none; }
}
@media (max-width: 420px) {
  .fn-benefits { grid-template-columns: 1fr; }
}

/* =====================
   AUTORIDADE
   ===================== */
.section-autoridade {
  padding: 80px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.autoridade-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.aut-quote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
}

.aut-aspas {
  font-size: 80px;
  color: var(--green);
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 0.5;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.aut-detalhe {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* =====================
   SEGURANÇA
   ===================== */
.section-seguranca {
  padding: 100px 0;
  background: var(--navy-l);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

@media (max-width: 768px) { .seg-grid { grid-template-columns: 1fr; } }

.seg-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s;
}

.seg-card:hover { border-color: rgba(21, 128, 61,0.2); }

.seg-icon { font-size: 36px; margin-bottom: 16px; }

.seg-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-l);
}

.seg-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin: 0; }

/* =====================
   FORMULÁRIO
   ===================== */
.section-demo {
  padding: 100px 0;
  background: var(--navy);
}

.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: flex-start;
}

@media (max-width: 900px) { .demo-inner { grid-template-columns: 1fr; } }

.demo-texto .section-tag { margin-bottom: 12px; }

.demo-texto h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.demo-desc {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.demo-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-l);
  font-weight: 500;
}

.di-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(21, 128, 61,0.6);
}

/* Form card */
.demo-form-wrap {
  background: var(--navy-l);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

@media (max-width: 540px) { .demo-form-wrap { padding: 24px 18px; } }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-l);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req { color: var(--green); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); opacity: 0.7; }

.form-group select option { background: var(--navy-l); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(21, 128, 61,0.5);
  box-shadow: 0 0 0 2px rgba(21, 128, 61,0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: rgba(255,68,68,0.6);
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.form-message.success {
  background: rgba(21, 128, 61,0.08);
  color: var(--green);
  border: 1px solid rgba(21, 128, 61,0.25);
}

.form-message.error {
  background: rgba(255,68,68,0.08);
  color: #ff6b6b;
  border: 1px solid rgba(255,68,68,0.25);
}

.btn-submit-green {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: var(--font);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
  box-shadow: 0 0 20px rgba(21, 128, 61,0.2);
}

.btn-submit-green:hover:not(:disabled) {
  background: var(--green-d);
  box-shadow: 0 0 30px rgba(21, 128, 61,0.3);
}

.btn-submit-green:disabled { opacity: 0.5; cursor: not-allowed; }

.form-privacy { font-size: 12px; color: var(--gray); text-align: center; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--navy-ll);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .footer-top { grid-template-columns: 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer .logo-text { color: var(--white); font-size: 18px; }
.footer .logo-icon { font-size: 20px; }

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fl-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}

.footer-links-group a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links-group a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p { font-size: 13px; color: var(--gray); }

/* Brand logo image */
.brand-img { display: block; height: 46px; width: auto; }
.brand-img-footer { height: 52px; }
@media (max-width: 600px) {
  .brand-img { height: 38px; }
  .brand-img-footer { height: 42px; }
}

/* =====================
   PLANOS (landing — hidden pricing)
   ===================== */
.section-planos {
  padding: 100px 0;
  background: #f7f9fb;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eef0f4;
}
.section-planos::before,
.section-planos::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px dashed #cbd5e1;
  opacity: .55;
  pointer-events: none;
  transform: translateY(-50%);
}
.section-planos::before { left: -190px; }
.section-planos::after  { right: -190px; }

.pl-eyebrow {
  color: #15803D !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.pl-title {
  color: #0f172a;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.pl-title-hl {
  background: linear-gradient(135deg, #22c55e 0%, #15803D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.planos-subtitulo {
  text-align: center;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 56px;
}

.planos-landing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) { .planos-landing-grid { grid-template-columns: repeat(2, 1fr); } }

/* Carrossel horizontal no mobile */
@media (max-width: 760px) {
  .planos-landing-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 14px 16px 8px;
    margin: 0 -16px;
  }
  .planos-landing-grid::-webkit-scrollbar { display: none; }
  .plano-landing-card {
    flex: 0 0 82%;
    max-width: 320px;
    scroll-snap-align: center;
  }
  .plano-landing-card:hover { transform: none; }
  .planos-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    margin-top: 8px;
  }
  .planos-hint svg { color: #15803D; }
}
.planos-hint { display: none; }

.plano-landing-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.plano-landing-card:hover {
  border-color: #c7d2db;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,23,42,0.06);
}

.plano-landing-card--destaque {
  border-color: #15803D;
  box-shadow: 0 0 0 1px #15803D inset, 0 8px 24px rgba(21,128,61,0.10);
}
.plano-landing-card--destaque:hover {
  border-color: #15803D;
  box-shadow: 0 0 0 1px #15803D inset, 0 14px 32px rgba(21,128,61,0.18);
}

.pl-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #15803D;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(21, 128, 61,0.35);
}

.pl-header {
  text-align: left;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid #15803D;
}

.pl-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}

.pl-nome {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pl-tagline {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  min-height: 38px;
}

.pl-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.pl-features li {
  font-size: 13.5px;
  color: #1e293b;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.pl-tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pl-features li strong { color: #0f172a; font-weight: 700; }

.pl-features li.pl-feature-muted {
  color: #94a3b8;
  font-style: italic;
  padding-left: 27px;
  position: relative;
}
.pl-features li.pl-feature-muted::before {
  content: '—';
  position: absolute;
  left: 6px;
  color: #cbd5e1;
}

.pl-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background: #fff;
  color: #15803D;
  border: 1.5px solid #15803D;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.pl-btn:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
}

.pl-btn--destaque {
  background: #15803D;
  color: #fff;
  border-color: #15803D;
  box-shadow: 0 8px 24px rgba(21, 128, 61,0.25);
}
.pl-btn--destaque:hover {
  background: #166534;
  color: #fff;
  box-shadow: 0 12px 30px rgba(21, 128, 61,0.35);
}

.planos-rodape {
  margin: 44px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  position: relative;
  z-index: 1;
}

.pr-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pr-texto {
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
}

.pr-texto strong { color: #15803D; font-weight: 800; }

@media (max-width: 760px) {
  .section-planos { padding: 72px 0; }
  .section-planos::before, .section-planos::after { display: none; }
  .planos-rodape { flex-direction: column; text-align: center; }
}

/* =====================
   CONFIANÇA E SEGURANÇA (light)
   ===================== */
.section-confianca {
  padding: 110px 0;
  background: #f7f9fb;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.section-confianca::before,
.section-confianca::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(21, 128, 61, .18);
  transform: translateY(-50%);
  pointer-events: none;
}
.section-confianca::before { left: -190px; }
.section-confianca::after  { right: -190px; }
@media (max-width: 760px) {
  .section-confianca { padding: 72px 0; }
  .section-confianca::before, .section-confianca::after { display: none; }
}

.cf-eyebrow {
  background: transparent !important;
  color: #15803D !important;
  border: none !important;
  padding: 0 !important;
  font-size: 12px !important;
  letter-spacing: 3px !important;
  font-weight: 700 !important;
  margin-bottom: 16px;
}
.cf-title {
  color: #0f172a !important;
  font-size: clamp(28px, 3.4vw, 40px) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 14px;
}
.cf-title-hl {
  background: linear-gradient(90deg, #22c55e, #15803D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cf-sub {
  text-align: center;
  color: #475569;
  max-width: 660px;
  margin: 0 auto 48px;
  font-size: 15px;
  line-height: 1.65;
}
.cf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) { .cf-grid { grid-template-columns: 1fr; } }

.cf-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cf-card:hover {
  transform: translateY(-2px);
  border-color: #d1fae5;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.cf-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cf-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}
.cf-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.cf-quote {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.cf-quote-mark {
  font-family: Georgia, serif;
  font-size: 36px;
  color: #22c55e;
  vertical-align: -6px;
  margin-right: 4px;
}

/* =====================
   DEMO — versão clara
   ===================== */
.section-demo {
  background: #f7f9fb !important;
  padding: 100px 0 !important;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}
.section-demo::before,
.section-demo::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(21, 128, 61, .18);
  transform: translateY(-50%);
  pointer-events: none;
}
.section-demo::before { left: -190px; }
.section-demo::after  { right: -190px; }
@media (max-width: 760px) {
  .section-demo { padding: 64px 0 !important; }
  .section-demo::before, .section-demo::after { display: none; }
}
.section-demo .demo-inner { position: relative; z-index: 1; }
.section-demo .section-tag {
  background: transparent !important;
  color: #15803D !important;
  border: none !important;
  padding: 0 !important;
  font-size: 12px !important;
  letter-spacing: 3px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}
.section-demo .demo-texto h2 {
  color: #0f172a;
}
.section-demo .demo-desc {
  color: #475569;
}
.section-demo .demo-item {
  color: #1e293b;
}
.section-demo .di-dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .15);
}
.section-demo .demo-form-wrap {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 32px rgba(15, 23, 42, .06);
}
.section-demo .form-group label {
  color: #475569;
}
.section-demo .form-group input,
.section-demo .form-group select,
.section-demo .form-group textarea {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #0f172a;
}
.section-demo .form-group input::placeholder,
.section-demo .form-group textarea::placeholder { color: #94a3b8; }
.section-demo .form-group select option { background: #ffffff; color: #0f172a; }
.section-demo .form-group input:focus,
.section-demo .form-group select:focus,
.section-demo .form-group textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .15);
}
.section-demo .btn-submit-green {
  background: #15803D;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(21, 128, 61, .25);
}
.section-demo .btn-submit-green:hover:not(:disabled) {
  background: #166534;
  box-shadow: 0 8px 24px rgba(21, 128, 61, .35);
}
.section-demo .form-privacy { color: #64748b; }

/* ============================================================
   PRODUTOS — 3 portas de entrada (Clube / Agent / Pro)
   ============================================================ */
.section-produtos {
  background: #F0FDF4;
  padding: 80px 0 90px;
  border-top: 1px solid #DCFCE7;
  border-bottom: 1px solid #DCFCE7;
}
.section-produtos .section-tag {
  display: inline-block;
  background: #15803D;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.produtos-title {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: #111827;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  max-width: 820px;
}
.produtos-accent { color: #15803D; }
.produtos-sub {
  color: #475569;
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 620px;
}
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.produto-card {
  position: relative;
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 128, 61, .12);
  border-color: #15803D;
}
.produto-card-active {
  border-color: #15803D;
  box-shadow: 0 12px 32px rgba(21, 128, 61, .14);
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
}
.produto-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: #15803D;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 999px;
}
.produto-ico {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 14px;
}
.produto-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}
.produto-card .produto-name { color: #15803D; }
.produto-card > p {
  color: #475569;
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.produto-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.produto-card ul li {
  position: relative;
  padding-left: 22px;
  color: #374151;
  font-size: .92rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.produto-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #15803D;
  font-weight: 800;
}
.produto-cta {
  display: inline-block;
  background: #15803D;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background .15s ease;
}
.produto-cta:hover { background: #166534; }

@media (max-width: 980px) {
  .produtos-grid { grid-template-columns: 1fr; gap: 18px; }
  .section-produtos { padding: 60px 0; }
}

/* ============================================================
   NAVBAR DROPDOWN — Produtos
   ============================================================ */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-btn {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.nav-dropdown-caret {
  font-size: .65em;
  transition: transform .2s ease;
  display: inline-block;
}
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown.open .nav-dropdown-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: -16px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
  padding: 8px;
  min-width: 340px;
  display: none;
  z-index: 1000;
}
/* invisible bridge so the dropdown stays open while moving the cursor */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #111827;
  transition: background .12s ease;
}
.nav-dropdown-item:hover { background: #F0FDF4; }
.nav-dropdown-active {
  background: #F0FDF4;
}
.nav-dropdown-ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0FDF4;
  border-radius: 8px;
  border: 1px solid #DCFCE7;
}
.nav-dropdown-text { display: block; }
.nav-dropdown-text strong {
  display: block;
  color: #15803D;
  font-size: .98rem;
  margin-bottom: 2px;
}
.nav-dropdown-text > span {
  display: block;
  color: #6B7280;
  font-size: .82rem;
  line-height: 1.35;
}

/* Mobile menu — sections + product items */
.nav-mobile-section {
  display: block;
  padding: 14px 16px 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #6B7280;
  text-transform: uppercase;
}
.nav-mobile-product {
  font-weight: 600 !important;
  color: #15803D !important;
}

/* === Vídeo institucional (após hero) === */
.hero-video-section {
  background: linear-gradient(180deg, #0B1410 0%, #14532D 100%);
  padding: 80px 0 100px;
  color: #fff;
}
.hero-video-section .container { text-align: center; }
.hero-video-section .section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #F59E0B;
  margin-bottom: 18px;
}
.hero-video-title {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  color: #fff;
}
.hero-video-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  margin: 0 auto 36px;
  max-width: 560px;
}
.hero-video-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(245,158,11,.18);
  background: #000;
  aspect-ratio: 16 / 9;
}
.hero-video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 720px) {
  .hero-video-section { padding: 56px 0 72px; }
  .hero-video-wrap { border-radius: 12px; box-shadow: 0 18px 40px rgba(0,0,0,.4); }
}
