/* ========================================
   ENERGIA CERTA BRASIL - CSS REFORMULADO
   ======================================== */

/* ========================================
   1. VARIÁVEIS GLOBAIS
   ======================================== */
:root {
  /* Cores principais */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #2e3d6a;
  
  /* Cores secundárias */
  --secondary-color: #2e3d6a;
  --secondary-dark: #1e2d5a;
  --secondary-light: #3d4c7a;
  
  /* Cores de destaque */
  --accent-color: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  
  /* Cores de texto */
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-white: #ffffff;
  
  /* Cores de fundo */
  --background-white: #ffffff;
  --background-light: #f9fafb;
  --background-dark: #111827;
  
  /* Cores de status */
  --success-color: #2e3d6a;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --info-color: #2e3d6a;
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, #2e3d6a, #3d4c7a);
  --gradient-accent: linear-gradient(135deg, #2e3d6a, #3d4c7a);
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Bordas */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  
  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Tipografia */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Transições */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ========================================
   2. RESET E BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white);
  overflow-x: hidden;
}

/* ========================================
   3. TIPOGRAFIA
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-sm);
}

h5 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
}

h6 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* ========================================
   4. LAYOUT E CONTAINER
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   5. HEADER E NAVEGAÇÃO
   ======================================== */
/* Estilos do header movidos para assets/css/header.css */

/* ========================================
   6. HERO SECTION - ESTRUTURA LIMPA
   ======================================== */
.hero {
  padding: 100px 0 80px;
  background: #2e3d6a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Imagem de fundo do Hero */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 61, 106, 0.8) 0%, rgba(61, 76, 122, 0.7) 100%);
  z-index: 2;
}

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

.hero .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================================
   REGRAS ESPECÍFICAS PARA INDEX
   ======================================== */
/* Remove overlay apenas na página inicial */
body:not(.page-servicos) .hero-overlay {
  background: transparent !important;
  opacity: 0 !important;
  display: none !important;
}

/* Remove background apenas na página inicial */
body:not(.page-servicos) .hero {
  background: transparent !important;
}

/* ========================================
   BADGE E TÍTULO
   ======================================== */
.hero-badge.urgency-badge {
  background: #dc2626;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
  color: #fbbf24;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   DESCRIÇÃO SIMPLES
   ======================================== */
.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #e5e7eb;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-benefits {
  display: block;
  font-size: 0.875rem;
  color: #fbbf24;
  font-weight: 500;
  margin-top: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ========================================
   ESTATÍSTICAS FUTURISTAS E ESPETACULARES
   ======================================== */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  min-width: 140px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2e3d6a;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* Cards Futuristas */
.stat-card-futuristic {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(46, 61, 106, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2e3d6a, #3d4c7a, #fbbf24, #2e3d6a);
  background-size: 200% 100%;
  animation: gradient-flow 3s linear infinite;
}

.stat-card-futuristic:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 50px rgba(46, 61, 106, 0.2);
  border-color: rgba(46, 61, 106, 0.3);
}

.stat-card-futuristic:hover .stat-icon-futuristic {
  transform: scale(1.2) rotate(5deg);
}

.stat-card-futuristic:hover .stat-glow {
  opacity: 1;
  animation: glow-pulse 1.5s ease-in-out infinite;
}

/* Ícones Futuristas */
.stat-icon-futuristic {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

/* Ícone 1 - Dinheiro (Verde) */
.stat-card-futuristic:nth-child(1) .stat-icon-futuristic {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.stat-card-futuristic:nth-child(1) .stat-icon-futuristic::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  animation: shine-rotate 2s linear infinite;
}

/* Ícone 2 - Usuários (Azul) */
.stat-card-futuristic:nth-child(2) .stat-icon-futuristic {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.stat-card-futuristic:nth-child(2) .stat-icon-futuristic::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  animation: shine-rotate 2s linear infinite;
  animation-delay: 0.5s;
}

/* Ícone 3 - Folha (Verde Claro) */
.stat-card-futuristic:nth-child(3) .stat-icon-futuristic {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.stat-card-futuristic:nth-child(3) .stat-icon-futuristic::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  animation: shine-rotate 2s linear infinite;
  animation-delay: 1s;
}

/* Efeito de Brilho */
.stat-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(46, 61, 106, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Números das Estatísticas Futuristas */
.stat-card-futuristic .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2e3d6a, #3d4c7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-card-futuristic .stat-label {
  font-size: 1rem;
  color: #4b5563;
  font-weight: 600;
  line-height: 1.4;
}

/* Animações Futuristas */
@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes shine-rotate {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}

@keyframes glow-pulse {
  0%, 100% { 
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ========================================
   RESPONSIVIDADE MOBILE PARA ESTATÍSTICAS
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-stats {
    gap: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .stat-card-futuristic {
    min-width: 180px;
    padding: 1.5rem 1rem;
  }
  
  .stat-icon-futuristic {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .stat-card-futuristic .stat-number {
    font-size: 2.25rem;
  }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0 1rem;
  }
  
  .stat-card-futuristic {
    min-width: 100%;
    padding: 1.5rem;
    border-radius: 16px;
    margin: 0 auto;
    max-width: 320px;
  }
  
  .stat-icon-futuristic {
    width: 65px;
    height: 65px;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }
  
  .stat-card-futuristic .stat-number {
    font-size: 2.5rem;
    margin: 1.25rem 0 0.75rem;
  }
  
  .stat-card-futuristic .stat-label {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  /* Ajuste da linha superior para mobile */
  .stat-card-futuristic::before {
    height: 4px;
    border-radius: 0 0 2px 2px;
  }
  
  /* Hover mais suave para mobile */
  .stat-card-futuristic:hover {
    transform: translateY(-8px) scale(1.02);
  }
  
  .stat-card-futuristic:hover .stat-icon-futuristic {
    transform: scale(1.15) rotate(3deg);
  }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
  .hero-stats {
    padding: 0 0.5rem;
  }
  
  .stat-card-futuristic {
    padding: 1.25rem;
    border-radius: 14px;
    max-width: 280px;
  }
  
  .stat-icon-futuristic {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .stat-card-futuristic .stat-number {
    font-size: 2.25rem;
    margin: 1rem 0 0.5rem;
  }
  
  .stat-card-futuristic .stat-label {
    font-size: 1rem;
  }
}

/* Mobile muito pequeno (até 360px) */
@media (max-width: 360px) {
  .stat-card-futuristic {
    padding: 1rem;
    max-width: 260px;
  }
  
  .stat-icon-futuristic {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }
  
  .stat-card-futuristic .stat-number {
    font-size: 2rem;
  }
  
  .stat-card-futuristic .stat-label {
    font-size: 0.9rem;
  }
}

/* ========================================
   SEÇÃO CTA
   ======================================== */
.hero-cta-section {
  margin-top: 2rem;
}

.cta-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ========================================
   BOTÕES SIMPLES
   ======================================== */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #10b981;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Botão Mega do Hero */
.btn-hero-mega {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: none;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  min-width: 400px;
  justify-content: center;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.btn-hero-mega::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: rotate(45deg) translateX(-100%);
  animation: shine-continuous 3s linear infinite;
  opacity: 1;
}

.btn-hero-mega:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.6);
}

.btn-hero-mega:active {
  transform: translateY(-4px) scale(1.04);
}

/* Efeito de brilho espelhado contínuo */
@keyframes shine-continuous {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}

/* Efeito de pulso com brilho mais forte */
@keyframes pulse-glow {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
  }
  50% { 
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
  }
}

.btn-secondary {
  background: white;
  color: #10b981;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #10b981;
  font-size: 1rem;
}

.btn-secondary:hover {
  background: #10b981;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* ========================================
   GARANTIAS SIMPLES
   ======================================== */
.hero-guarantees {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.guarantee-item i {
  color: #2e3d6a;
  font-size: 1rem;
}

/* ========================================
   GARANTIAS HORIZONTAIS (BANNER)
   ======================================== */
.hero-guarantees-horizontal {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #2e3d6a;
  padding: 1rem 2rem;
  border-radius: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.guarantee-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #10b981;
  color: white;
  border-radius: 4px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  font-weight: bold;
}

.guarantee-text {
  color: #fbbf24;
  font-size: 0.875rem;
  font-weight: 500;
}

.guarantee-separator {
  color: #fbbf24;
  font-size: 1rem;
  font-weight: bold;
}

/* ========================================
   SEÇÃO DE VÍDEO/IMAGEM
   ======================================== */
.video-section {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* ========================================
   CARD DE VÍDEO EM FORMATO CELULAR
   ======================================== */
.video-card-container {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.video-card-phone {
  position: relative;
  width: 280px;
  height: 500px;
}

.phone-frame {
  width: 100%;
  height: 100%;
  background: #1f2937;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #6b7280;
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  /* Compatibilidade iOS */
  -webkit-border-radius: 25px;
  /* Melhora renderização no iOS */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.video-placeholder i {
  font-size: 4rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.video-placeholder span {
  font-size: 1rem;
  color: #9ca3af;
  font-weight: 500;
}

/* ========================================
   LAYOUT 50/50 PARA SEÇÃO DE VÍDEO
   ======================================== */
.video-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.video-column {
  display: flex;
  justify-content: center;
}

.video-text-column {
  padding-left: 2rem;
}

.video-text-content h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.video-text-content p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.video-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.video-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #374151;
}

.video-benefits i {
  color: #10b981;
  font-size: 1.1rem;
}

.video-cta {
  background: #f3f4f6;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2e3d6a;
}

.video-cta p {
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.video-cta small {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .video-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .video-text-column {
    padding-left: 0;
    text-align: center;
  }
}

/* ========================================
   VÍDEO E IMAGEM DENTRO DO CELULAR
   ======================================== */
.phone-video,
.phone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  background: #000;
  /* Compatibilidade iOS */
  -webkit-object-fit: cover;
  -webkit-border-radius: 25px;
  /* Força hardware acceleration no iOS */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  /* Melhora renderização no iOS */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Fallback específico para iOS */
@supports (-webkit-touch-callout: none) {
  .phone-video,
  .phone-image {
    object-fit: contain;
    -webkit-object-fit: contain;
    background: linear-gradient(45deg, #1f2937, #374151);
  }
  
  .phone-screen {
    background: linear-gradient(45deg, #1f2937, #374151);
  }
}

/* ========================================
   VISUAL - CARDS SIMPLES EM LINHA
   ======================================== */
.hero-visual {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.floating-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  border: 2px solid transparent;
  text-align: center;
}

.floating-card.primary {
  border-color: #2e3d6a;
}

.floating-card.secondary {
  border-color: #2e3d6a;
}

.floating-card.accent {
  border-color: #8b5cf6;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card-content h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
  font-weight: 600;
}

.card-content p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: #6b7280;
  line-height: 1.4;
}

.card-badge {
  background: #2e3d6a;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}

/* ========================================
   7. BOTÕES E COMPONENTES
   ======================================== */
.btn-hero-primary {
  font-size: var(--font-size-base);
  padding: var(--spacing-md) var(--spacing-lg);
}

.btn-comparison,
.btn-urgency,
.btn-how-it-works,
.btn-why-choose,
.btn-results,
.btn-partners,
.btn-benefits,
.btn-profile,
.btn-services,
.btn-process,
.btn-clients,
.btn-faq {
  font-size: var(--font-size-sm);
  padding: var(--spacing-sm) var(--spacing-md);
}

/* ========================================
   8. RESPONSIVIDADE
   ======================================== */
@media (max-width: 1200px) {
  /* Estilos do header movidos para assets/css/header.css */
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .stat-item {
    min-width: 200px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-guarantees {
    gap: 1rem;
  }
  
  .hero-visual {
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .floating-card {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    gap: 0.75rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-guarantees {
    gap: 0.5rem;
  }
}

/* ========================================
   9. SEÇÕES ESPECÍFICAS
   ======================================== */

/* CSS da seção de comparação movido para assets/css/comparison-section.css */

/* CSS da seção Como Funciona movido para assets/css/how-it-works.css */

/* CSS da seção Por que Usar movido para assets/css/features-section.css */

/* Seção de Urgência */
.urgency-section {
  background: linear-gradient(135deg, #2e3d6a, #3d4c7a);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  text-align: center;
  color: var(--text-white);
}

.urgency-content h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  color: var(--text-white);
}

.urgency-content p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
  color: var(--text-white);
  opacity: 0.9;
}

.urgency-counter {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--spacing-xs);
}

.counter-label {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.8);
}

/* CSS da seção de parceiros movido para assets/css/partners-testimonials.css */

/* CSS da seção de parceiros movido para assets/css/partners-testimonials.css */



.form-note {
  text-align: center;
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin: 0;
}



/* Seção Sobre Nós */
.about-section {
  background: var(--background-light);
  padding: var(--spacing-2xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.about-content h2 {
  color: var(--text-dark);
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-lg);
}

.about-description {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: #2e3d6a;
  margin-bottom: var(--spacing-xs);
}

.about-stat .stat-label {
  color: var(--text-light);
  font-size: var(--font-size-sm);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--text-light);
}

.about-feature i {
  color: #2e3d6a;
  font-size: var(--font-size-xl);
}

.about-visual {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: var(--spacing-xl);
  color: var(--text-white);
}

.overlay-content h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
}

.overlay-content p {
  opacity: 0.9;
}

/* Seção FAQ */
.faq-section {
  padding: var(--spacing-2xl) 0;
}

.faq-container {
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
}

.faq-item {
  background: var(--background-white);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  padding: var(--spacing-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--background-light);
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-question h4 {
  color: var(--text-dark);
  margin: 0;
  font-size: var(--font-size-lg);
}

.faq-question i {
  color: #2e3d6a;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: var(--spacing-lg);
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Seção CTA Final */
.cta-final {
  background: var(--gradient-primary);
  padding: var(--spacing-2xl) 0;
  color: var(--text-white);
  text-align: center;
}

.cta-final-text h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
  color: var(--text-white);
}

.cta-final-text p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

.scarcity-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.scarcity-message p {
  margin: 0;
  color: #fca5a5;
  font-weight: 600;
}

.cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-sm);
  opacity: 0.8;
}

.guarantee-item i {
  color: #2e3d6a;
}

/* ========================================
   10. FOOTER - REMOVIDO PARA CSS SEPARADO
   ======================================== */
/* Footer CSS movido para assets/css/footer.css e footer-mobile.css */

/* ========================================
   10.5. SEPARADORES DE SEÇÃO
   ======================================== */
.section-separator {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2e3d6a, #3d4c7a, #fbbf24, #2e3d6a);
  margin: 4rem auto;
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.section-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: separator-shine 3s infinite;
}

@keyframes separator-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ========================================
   11. UTILITÁRIOS
   ======================================== */
.highlight {
  color: var(--primary-color);
  font-weight: 800;
}

.accent-text {
  color: #2e3d6a;
  font-weight: 600;
}

.border-color {
  border-color: var(--border-color);
}

/* ========================================
   12. RESPONSIVIDADE ADICIONAL
   ======================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  
  /* CSS da seção de comparação movido para assets/css/comparison-section.css */
  
  .cta-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  /* CSS da seção de comparação movido para assets/css/comparison-section.css */
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .urgency-counter {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .cta-final-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-guarantees {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .floating-card {
    max-width: 100%;
  }
  
  .hero-guarantees {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: var(--font-size-3xl);
  }
  
  .hero-description {
    font-size: var(--font-size-base);
  }
  
  /* Estilos do header movidos para assets/css/header.css */
  
  /* CSS da seção de comparação movido para assets/css/comparison-section.css */
  
  /* CSS da seção de comparação movido para assets/css/comparison-section.css */
  
  .bill-amount {
    font-size: var(--font-size-3xl);
  }
  
  .urgency-section {
    padding: var(--spacing-lg);
  }
  
  .credibility-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   CSS DAS PÁGINAS LEGAIS MOVIDO PARA assets/css/legal-pages.css
   ======================================== */
