/* style-v21.css - Optimized version of style-v20.css */

/* ============================================================
   TOLM TECNOLOGIA: Design System & Landing Page Styles
   ============================================================ */

/* ==================== VARIÁVEIS ==================== */
:root {
  /* Backgrounds */
  --bg-primary:    #050811; /* Azul escuro profundo de alta tecnologia */
  --bg-secondary:  #0C101F; /* Azul ardósia premium */

  /* Glassmorphism */
  --glass-bg:       rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border:   rgba(255, 255, 255, 0.06);

  /* Orange Accent: marca Tolm */
  --orange-400:       #FB923C;
  --orange-500:       #F97316;
  --orange-600:       #EA580C;
  --orange-glow:      rgba(249, 115, 22, 0.08);
  --orange-glow-md:   rgba(249, 115, 22, 0.16);
  --orange-glow-lg:   rgba(249, 115, 22, 0.24);

  /* Status */
  --red-400:    #F87171;
  --red-glow:   rgba(248, 113, 113, 0.12);
  --green-400:  #4ADE80;

  /* Texto */
  --text-white:     #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-muted:     #6B7280;

  /* Bordas */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-orange: rgba(249, 115, 22, 0.28);

  /* Tipografia */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamento */
  --section-py: 110px;

  /* Transições */
  --t: all 0.3s ease;

  /* Bordas arredondadas */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
}

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

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

#inicio, #problemas, #servicos, #sobre, #orcamento {
  scroll-margin-top: 100px !important;
}

body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a  { color: inherit; }

/* ==================== UTILITÁRIOS ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.gradient-text {
  background: linear-gradient(130deg, var(--orange-400) 0%, var(--orange-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  color: var(--orange-400);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--orange-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ==================== BOTÕES ==================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange-500);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--r-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: var(--t);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px var(--orange-glow-lg), 0 0 0 1px var(--orange-600);
}

.btn-primary:hover::after { opacity: 1; }

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  padding: 20px 0;
  background: rgba(18, 25, 41, 0.45); /* Lindo glassmorphism translúcido e mais claro */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--t);
}

.navbar.scrolled {
  background: #FFFFFF;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

/* Letras e elementos escuros ao scrollar */
.navbar.scrolled .logo-name {
  color: #0E1322;
}

.navbar.scrolled .logo-sub {
  color: rgba(14, 19, 34, 0.6);
}

.navbar.scrolled .logo-icon path {
  fill: #0E1322;
}

.navbar.scrolled .logo-icon rect {
  fill: rgba(0, 0, 0, 0.03);
  stroke: rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-links a {
  color: #0E1322;
}

.navbar.scrolled .nav-links a:hover {
  color: var(--orange-500);
}

.navbar.scrolled .nav-hamburger span {
  background: #0E1322;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-size: 20px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 7.5px;
  color: rgba(255, 255, 255, 0.55); /* Muito mais legível e profissional */
  letter-spacing: 4.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #FFFFFF; /* Puro branco para máximo contraste */
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600; /* Mais encorpado para facilitar leitura */
  transition: var(--t);
  position: relative;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
  transition: var(--t);
}

.nav-links a:hover {
  color: var(--orange-400); /* Laranja brilhante no hover */
}
.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: var(--t);
}

/* ==================== HERO ==================== */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.07) 0%, transparent 50%), linear-gradient(135deg, #050811 0%, #0E1322 100%);
  position: relative;
  overflow: hidden;
}

/* Fundo decorativo */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-glow-main {
  position: absolute; top: 10%; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(180deg, rgba(249,115,22,0.08) 0%, transparent 60%);
}

/* Gradiente sutil no lado direito */
.hero .container { position: relative; z-index: 1; }

/* Layout: duas colunas balanceadas */
.hero-row {
  display: flex;
  align-items: center;
  gap: 56px;
}

/* ── Coluna esquerda: texto ── */
.hero-content {
  flex: 1.2;
  max-width: 640px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -2px;
  color: var(--text-white);
  margin-bottom: 20px;
}

.accent-word {
  background: linear-gradient(130deg, var(--orange-400), var(--orange-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Barra laranja + h2 (idêntico ao .hero-subtitle da Decpack) */
.hero-subtitle-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 22px;
}

.orange-bar {
  width: 5px;
  background: var(--orange-500);
  border-radius: 3px;
  flex-shrink: 0;
}

.hero-subtitle-row h2 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

.hl-orange { color: var(--orange-400); font-weight: 600; }

/* Parágrafo */
.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 480px;
}

/* Bullets com ✓ laranja (idêntico ao .hero-bullets da Decpack) */
.hero-bullets {
  list-style: none;
  margin-bottom: 36px;
}

.hero-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

.hero-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange-500);
  font-weight: 800;
  font-size: 14px;
}

/* CTA + texto auxiliar */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.sub-btn-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Coluna direita: visual card ── */
.hero-visual-side {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ilustração de Rede Abstrata */
.network-illustration {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Badges flutuantes na ilustração */
.network-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 16, 31, 0.82);
  border: 1px solid var(--border-orange);
  border-radius: 100px;
  padding: 8px 16px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  pointer-events: none;
}

.badge-top-right {
  top: 15%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: 15%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
  animation-delay: -3s;
}

.network-badge i {
  color: var(--orange-400);
}

/* Animações SVG */
.anim-spin-slow {
  transform-origin: 250px 250px;
  animation: spin 30s linear infinite;
}

.anim-spin-reverse {
  transform-origin: 250px 250px;
  animation: spin 20s linear infinite reverse;
}

.anim-pulse-ring {
  transform-origin: 250px 250px;
  animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.node-core {
  transform-origin: 250px 250px;
  animation: pulse-core 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    r: 42;
    stroke-opacity: 0.8;
  }
  50% {
    r: 48;
    stroke-opacity: 0.3;
    stroke-width: 3.5px;
  }
  100% {
    r: 42;
    stroke-opacity: 0.8;
  }
}

@keyframes pulse-core {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px var(--orange-500));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px var(--orange-400));
  }
}




/* ── Responsivo ── */
@media (max-width: 1024px) {
  .hero-row { flex-direction: column; gap: 48px; }
  .hero-content h1 { font-size: clamp(32px, 6vw, 52px); }
}

@media (max-width: 640px) {
  .hero { padding: 110px 0 60px; }
  .hero-content h1 { letter-spacing: -1.5px; }
}


/* ==================== SEÇÃO 2: PROBLEMAS + SOLUÇÃO ==================== */
.sec-problems {
  padding: var(--section-py) 0;
  background: radial-gradient(circle at 10% 20%, rgba(239, 68, 68, 0.025) 0%, transparent 40%), linear-gradient(180deg, #0E1322 0%, #0C101F 100%);
  position: relative;
}

.sec-problems::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent);
  pointer-events: none;
}

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

.problem-card {
  background: var(--glass-bg);
  border: 1px solid rgba(248, 113, 113, 0.18);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-400), transparent);
  opacity: 0;
  transition: var(--t);
}

.problem-card:hover {
  border-color: rgba(248, 113, 113, 0.35);
  transform: translateY(-5px);
  background: var(--glass-bg-hover);
}

.problem-card:hover::before { opacity: 1; }

.prob-icon {
  width: 50px; height: 50px;
  background: var(--red-glow);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-400);
  margin-bottom: 18px;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.problem-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Divisor */
.transition-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 40px 0 60px;
}

.td-line {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.td-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  color: var(--orange-400);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Cards de solução */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.solution-card {
  background: var(--glass-bg);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}

.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
  opacity: 0;
  transition: var(--t);
}

.solution-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-5px);
  background: var(--glass-bg-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px var(--border-orange);
}

.solution-card:hover::after { opacity: 1; }

.sol-icon {
  width: 50px; height: 50px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  margin-bottom: 18px;
  transition: var(--t);
}

.solution-card:hover .sol-icon {
  background: var(--orange-glow-md);
  box-shadow: 0 0 24px var(--orange-glow);
}

.solution-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.solution-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==================== SEÇÃO 3: SERVIÇOS ==================== */
.sec-services {
  padding: var(--section-py) 0;
  background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%), linear-gradient(180deg, #0C101F 0%, #131929 100%);
  position: relative;
  overflow: hidden;
}

.services-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  pointer-events: none;
}

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

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
  opacity: 0;
  transition: var(--t);
}

.service-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-6px);
  background: var(--glass-bg-hover);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25), 0 0 0 1px var(--border-orange);
}

.service-card:hover::before { opacity: 1; }

.svc-icon {
  width: 58px; height: 58px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  margin-bottom: 22px;
  transition: var(--t);
}

.service-card:hover .svc-icon {
  background: var(--orange-glow-md);
  box-shadow: 0 0 28px var(--orange-glow);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Faixa de diferenciais */
.differentials-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 64px;
}

.diff-item {
  background: var(--bg-primary);
  padding: 32px 24px;
  text-align: center;
  transition: var(--t);
}

.diff-item:hover { background: var(--glass-bg-hover); }

.diff-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  margin: 0 auto 14px;
}

.diff-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.diff-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==================== SEÇÃO 4: SOBRE + STATS + FORM ==================== */
.sec-about {
  padding: var(--section-py) 0;
  background: radial-gradient(circle at 50% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 60%), linear-gradient(180deg, #131929 0%, #050811 100%);
  position: relative;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}

.about-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: white;
  letter-spacing: -1.2px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.val-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--t);
}

.val-badge:hover {
  background: var(--glass-bg-hover);
  border-color: var(--border-orange);
  color: var(--orange-400);
}

.val-badge i { color: var(--orange-500); width: 13px; height: 13px; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 2px;
  background: var(--orange-500);
  border-radius: 0 0 4px 4px;
}

.stat-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.stat-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--orange-400);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Formulário */
.form-wrapper {
  background: linear-gradient(135deg, rgba(20, 27, 45, 0.75) 0%, rgba(11, 15, 25, 0.95) 100%);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: var(--r-xl);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-wrapper::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 65%);
  pointer-events: none;
}

.form-wrapper::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-info h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.form-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cicon {
  width: 42px; height: 42px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  flex-shrink: 0;
}

.contact-row a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--t);
}

.contact-row a:hover { color: var(--orange-400); }

/* Form fields */
.main-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fgroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fgroup label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.fgroup input,
.fgroup select,
.fgroup textarea {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  color: var(--text-white);
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: var(--t);
  width: 100%;
}

.fgroup input::placeholder,
.fgroup textarea::placeholder {
  color: var(--text-muted);
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px var(--orange-glow);
  background: rgba(255,255,255,0.06);
}

.fgroup input.error { border-color: var(--red-400) !important; box-shadow: 0 0 0 3px var(--red-glow) !important; }

.form-submit { margin-top: 4px; }
.form-submit .btn-primary { width: 100%; padding: 18px; font-size: 16px; }

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-privacy i { color: var(--orange-500); width: 13px; height: 13px; }

/* ==================== FOOTER ==================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 44px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--t);
}

.footer-links a:hover { color: var(--orange-400); }

.footer-social {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--t);
}

.soc-btn:hover {
  background: var(--orange-glow);
  border-color: var(--border-orange);
  color: var(--orange-500);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ==================== WHATSAPP WIDGET ==================== */
.wa-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* Popup */
.wa-popup {
  width: 365px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px var(--glass-border);
  transform: translateY(16px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-popup.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.wa-header {
  background: #075E54;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}

.wa-name {
  font-size: 15px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.wa-status-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.wa-dot {
  width: 7px; height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.wa-status-txt {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.wa-x {
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: var(--t);
}

.wa-x:hover { background: rgba(255,255,255,0.22); }

.wa-chat-bg {
  padding: 18px 18px 4px;
  background: #ECE5DD;
}

.wa-bubble {
  background: white;
  border-radius: 0 13px 13px 13px;
  padding: 13px 16px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  max-width: 90%;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border-top: 9px solid white;
  border-left: 8px solid transparent;
}

.wa-bubble p {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.55;
}

.wa-bubble p + p { margin-top: 6px; }

.wa-time {
  text-align: right;
  font-size: 10px;
  color: #9CA3AF;
  margin-top: 4px;
}

.wa-form {
  background: var(--bg-secondary);
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.wa-form input {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  color: white;
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: var(--t);
  width: 100%;
}

.wa-form input::placeholder { color: var(--text-muted); }

.wa-form input:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
}

.wa-form input.error {
  border-color: var(--red-400) !important;
  box-shadow: 0 0 0 3px var(--red-glow) !important;
}

.wa-send {
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--r-md);
  padding: 14px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.wa-send:hover { background: #128C7E; transform: translateY(-1px); }

/* Botão flutuante */
.wa-fab {
  width: 64px; height: 64px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(37,211,102,0.42);
  transition: var(--t);
  position: relative;
  animation: wa-pulse 3s ease-in-out infinite;
  color: white;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 42px rgba(37,211,102,0.55);
  animation: none;
}

.wa-tooltip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  opacity: 0;
  transition: var(--t);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--bg-secondary);
}

.wa-fab:hover .wa-tooltip { opacity: 1; }

/* ==================== ANIMAÇÕES ==================== */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.42); }
  50%       { box-shadow: 0 8px 32px rgba(37,211,102,0.42), 0 0 0 14px rgba(37,211,102,0.08); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==================== DETALHAMENTOS PREMIUM: BADGES DE CARD ==================== */
.card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  pointer-events: none;
  z-index: 5;
  transition: var(--t);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.badge-red {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #EF4444;
}

.badge-green {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #4ADE80;
}

.badge-orange {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: var(--orange-400);
}

/* Overrides de Badges para Contraste Extremo no Light Theme */
.sec-light .badge-red {
  background: rgba(220, 38, 38, 0.07) !important;
  border: 1px solid rgba(220, 38, 38, 0.15) !important;
  color: #B91C1C !important;
}

.sec-light .badge-green {
  background: rgba(22, 163, 74, 0.07) !important;
  border: 1px solid rgba(22, 163, 74, 0.15) !important;
  color: #15803D !important;
}

.sec-light .badge-orange {
  background: rgba(234, 88, 12, 0.07) !important;
  border: 1px solid rgba(234, 88, 12, 0.15) !important;
  color: #C2410C !important;
}

/* Os estilos de Como Funciona e Reversão Dark de Sobre Nós foram removidos por simplificação de dobras. */

/* ==================== MVS (MISSÃO E VISÃO) DENTRO DE QUEM SOMOS ==================== */
.mvs-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.mvs-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: left;
}

.mvs-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mvs-item p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: var(--text-secondary) !important;
  margin-bottom: 0 !important;
}


/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hero-row { flex-direction: column; gap: 48px; }
  .hero-visual-side { display: flex; width: 100%; max-width: 380px; margin: 0 auto; }

  .problems-grid,
  .solutions-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .differentials-strip { grid-template-columns: repeat(2, 1fr); }

  .about-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .form-inner { grid-template-columns: 1fr; gap: 44px; }
  .form-wrapper { padding: 48px 40px; }
}

/* Combined @media (max-width: 768px): navbar scrolled mobile + hamburger menu + layout */
@media (max-width: 768px) {
  :root { --section-py: 60px; }

  /* Menu lateral responsivo branco no scroll no mobile */
  .navbar.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }
  .navbar.scrolled .nav-hamburger.active span:nth-child(1),
  .navbar.scrolled .nav-hamburger.active span:nth-child(3) {
    background: #0E1322;
  }

  /* Menu Hamburger Lateral Premium com Gradiente e Blur */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(12, 16, 31, 0.98) 0%, rgba(5, 8, 17, 0.99) 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    padding: 130px 48px;
    gap: 36px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.7);
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 899;
  }

  .nav-links.active {
    right: 0;
  }

  /* Links elegantes: tamanho grande, uppercase, com indicador de bolinha laranja no hover */
  .nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
  }

  /* Ocultar linha inferior padrão de desktop */
  .nav-links a::after {
    display: none !important;
  }

  /* Bolinha laranja que surge no hover */
  .nav-links a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-500);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links a:hover {
    color: var(--orange-500) !important;
    transform: translateX(8px);
  }

  .nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
  }

  /* Botão hamburger redondo e estilo glassmorphism */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 901;
    cursor: pointer;
  }

  .nav-hamburger.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  }

  /* Ajustes do botão hamburger ao scrollar */
  .navbar.scrolled .nav-hamburger {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
  }

  .navbar.scrolled .nav-hamburger.active {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
  }

  /* Linhas internas do hamburger */
  .nav-hamburger span {
    width: 24px;
    height: 3px;
    border-radius: 3px;
  }

  /* Animação do botão Hamburger para X */
  .nav-hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: white;
  }
  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: white;
  }

  .hero-visual-side { display: none; }

  .problems-grid,
  .solutions-grid,
  .services-grid { grid-template-columns: 1fr; }

  .differentials-strip { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 36px 24px; }

  .footer-top { flex-direction: column; align-items: flex-start; }

  .wa-widget { right: 16px; bottom: 20px; }
  .wa-popup { width: calc(100vw - 32px); }
}

@media (max-width: 480px) {
  .hero-content h1 { letter-spacing: -1.5px; }
  .differentials-strip { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ESTILOS PREMIUM PARA SEÇÕES CLARAS (.sec-light): Alternância
   ============================================================ */

.sec-light {
  background-color: #FFFFFF !important;
  background-image: none !important;
  color: #1F2937 !important;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  position: relative;
}

/* Padrão de grade de pontos cinzas sutis em fundos claros */
.sec-light::before {
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Títulos, subtítulos e textos principais */
.sec-light .section-title,
.sec-light h2,
.sec-light h3,
.sec-light .about-text h2 {
  color: #111827 !important;
}

.sec-light .section-subtitle,
.sec-light p,
.sec-light .about-text p {
  color: #4B5563 !important;
}

.sec-light strong {
  color: #111827 !important;
}

/* Tags de seção */
.sec-light .section-tag {
  background: rgba(249, 115, 22, 0.08) !important;
  border: 1px solid rgba(249, 115, 22, 0.28) !important;
  color: #EA580C !important;
}

.sec-light .section-tag .dot {
  background: #EA580C !important;
}

/* Divisor de transição na Seção 2 */
.sec-light .transition-divider .td-line {
  background: #E5E7EB !important;
}

.sec-light .transition-divider .td-badge {
  background: rgba(249, 115, 22, 0.08) !important;
  border: 1px solid rgba(249, 115, 22, 0.28) !important;
  color: #EA580C !important;
}

/* ==================== CARDS PREMIUM EM DOBRAS CLARAS ==================== */
.sec-light .problem-card,
.sec-light .solution-card,
.sec-light .stat-card {
  background: #FFFFFF !important;
  border: 1px solid #E5E7EB !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 
              0 10px 15px -3px rgba(0, 0, 0, 0.04), 
              0 20px 25px -5px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Hover nos cards */
.sec-light .problem-card:hover,
.sec-light .solution-card:hover,
.sec-light .stat-card:hover {
  background: #FFFFFF !important;
  transform: translateY(-6px) !important;
  border-color: rgba(249, 115, 22, 0.35) !important;
  box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.08), 
              0 12px 24px -8px rgba(0, 0, 0, 0.06) !important;
}

.sec-light .problem-card:hover::before,
.sec-light .solution-card:hover::after {
  opacity: 1 !important;
}

/* Textos dentro dos cards */
.sec-light .problem-card h3,
.sec-light .solution-card h3 {
  color: #1F2937 !important;
}

.sec-light .problem-card p,
.sec-light .solution-card p {
  color: #6B7280 !important;
}

/* Ícones dos cards */
.sec-light .prob-icon {
  background: rgba(239, 68, 68, 0.08) !important;
  border: 1px solid rgba(239, 68, 68, 0.18) !important;
  color: #EF4444 !important;
}

.sec-light .sol-icon {
  background: rgba(249, 115, 22, 0.08) !important;
  border: 1px solid rgba(249, 115, 22, 0.18) !important;
  color: #F97316 !important;
}

.sec-light .solution-card:hover .sol-icon {
  background: rgba(249, 115, 22, 0.14) !important;
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.15) !important;
  color: #EA580C !important;
}

/* ==================== SEÇÃO SOBRE NÓS CLARA (SOBRE: opcional se ativado) ==================== */
.sec-light .mvs-item {
  background: #FFFFFF !important;
  border: 1px solid #E5E7EB !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 
              0 10px 15px -3px rgba(0, 0, 0, 0.03) !important;
}

.sec-light .mvs-item h4 {
  color: #1F2937 !important;
}

.sec-light .mvs-item p {
  color: #4B5563 !important;
}

.sec-light .val-badge {
  background: #F3F4F6 !important;
  border: 1px solid #E5E7EB !important;
  color: #4B5563 !important;
}

.sec-light .val-badge:hover {
  background: rgba(249, 115, 22, 0.06) !important;
  border-color: rgba(249, 115, 22, 0.3) !important;
  color: #EA580C !important;
}

/* Estatísticas */
.sec-light .stat-card .stat-num {
  color: #EA580C !important;
}

.sec-light .stat-card .stat-lbl {
  color: #4B5563 !important;
}

/* ==================== PRESERVAÇÃO DO FORMULÁRIO ESCURO (CTA) ==================== */
.sec-light .form-wrapper {
  background: linear-gradient(135deg, rgba(12, 16, 31, 0.98) 0%, rgba(5, 8, 17, 0.99) 100%) !important;
  border: 1px solid rgba(249, 115, 22, 0.28) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.sec-light .form-wrapper .section-tag {
  background: var(--orange-glow) !important;
  border: 1px solid var(--border-orange) !important;
  color: var(--orange-400) !important;
}

.sec-light .form-wrapper .section-tag .dot {
  background: var(--orange-500) !important;
}

.sec-light .form-wrapper h2 {
  color: #FFFFFF !important;
}

.sec-light .form-wrapper p,
.sec-light .form-wrapper .form-info p {
  color: #9CA3AF !important;
}

.sec-light .form-wrapper .contact-row a {
  color: #D1D5DB !important;
}

.sec-light .form-wrapper .contact-row a:hover {
  color: #FB923C !important;
}

.sec-light .form-wrapper label {
  color: #D1D5DB !important;
}

.sec-light .form-wrapper input,
.sec-light .form-wrapper select,
.sec-light .form-wrapper textarea {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
}

.sec-light .form-wrapper input:focus,
.sec-light .form-wrapper select:focus,
.sec-light .form-wrapper textarea:focus {
  border-color: #F97316 !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.sec-light .form-wrapper .form-privacy {
  color: #9CA3AF !important;
}

/* ============================================================
   ESTILOS ADICIONAIS DE ALTA QUALIDADE: MOUSE GLOW E SHINY
   ============================================================ */

/* Brilho interativo seguindo o mouse no Hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 80%) var(--mouse-y, 20%), rgba(249, 115, 22, 0.05), transparent 80%) !important;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* Reflexo metálico nos cards no hover (Shiny Swipe) */
.problem-card, .solution-card, .service-card, .stat-card {
  position: relative;
  overflow: hidden;
}

.problem-card::after, .solution-card::after, .service-card::after, .stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 2;
}

/* No light theme (seções claras), o reflexo é mais visível e claro */
.sec-light .problem-card::after, 
.sec-light .solution-card::after, 
.sec-light .stat-card::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent) !important;
}

/* Disparo do swipe no hover */
.problem-card:hover::after, .solution-card:hover::after, .service-card:hover::after, .stat-card:hover::after {
  left: 150%;
  transition: all 0.85s cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}

/* Efeito de pulso nos contornos dos nós externos do SVG do Hero */
.pulse-node circle:first-child,
.cloud-node circle:first-child,
.client-node circle:first-child,
.secure-node circle:first-child,
.backup-node circle:first-child,
.email-node circle:first-child,
.phone-node circle:first-child,
.gear-node circle:first-child {
  animation: pulse-border 4s ease-in-out infinite !important;
}

/* Atrasos das animações para que pulsem assincronamente */
.cloud-node circle:first-child { animation-delay: 0.4s !important; }
.client-node circle:first-child { animation-delay: 0.8s !important; }
.secure-node circle:first-child { animation-delay: 1.2s !important; }
.backup-node circle:first-child { animation-delay: 1.6s !important; }
.pulse-node circle:first-child  { animation-delay: 2.0s !important; }
.email-node circle:first-child  { animation-delay: 2.4s !important; }
.phone-node circle:first-child  { animation-delay: 2.8s !important; }
.gear-node circle:first-child   { animation-delay: 3.2s !important; }

@keyframes pulse-border {
  0%, 100% { stroke-opacity: 0.35; stroke-width: 1.5px; }
  50% { stroke-opacity: 0.85; stroke-width: 2.5px; filter: drop-shadow(0 0 3px rgba(249, 115, 22, 0.25)); }
}
