/* Reset CSS melhorado seguindo melhores práticas */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reset apenas para elementos que precisam */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* Compensar navbar fixo */
body {
  padding-top: 80px;
}

/* Sistema de Design Consistente */
:root {
  /* Espaçamentos */
  --spacing-xs: 0.5rem;    /* 8px */
  --spacing-sm: 1rem;      /* 16px */
  --spacing-md: 1.5rem;    /* 24px */
  --spacing-lg: 2rem;      /* 32px */
  --spacing-xl: 3rem;       /* 48px */
  --spacing-2xl: 4rem;     /* 64px */
  --spacing-3xl: 6rem;     /* 96px */
  
  /* Espaçamento de seções */
  --section-padding: 5rem 0;
  --section-padding-mobile: 3rem 0;
  
  /* Container max-width */
  --container-max-width: 1200px;
  
  /* Paleta de Cores Principal */
  --primary-color: #007bff;
  --primary-dark: #0056b3;
  --primary-light: #e3f2fd;
  
  --secondary-color: #6c757d;
  --secondary-dark: #495057;
  --secondary-light: #f8f9fa;
  
  --accent-color: #ff8800;
  --accent-dark: #e95c1b;
  --accent-light: #fff3e0;
  
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  
  /* Cores de Texto */
  --text-primary: #1a365d;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;
  --text-white: #ffffff;
  
  /* Cores de Fundo */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: #1a365d;
  --bg-light: #f7fafc;
  
  /* Tipografia */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
  
  /* Tamanhos de Fonte */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  
  /* Pesos de Fonte */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Tipografia Base */
body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  font-weight: var(--font-normal);
}

/* Hierarquia de Títulos */
h1, .h1 {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

h2, .h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

h3, .h3 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

h4, .h4 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

h5, .h5 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

h6, .h6 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

/* Parágrafos */
p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Classes de Título Padronizadas */
.title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

.subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.glass-card h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
}

.section-container h1 {
  color: var(--text-primary);
}

.text-title {
  color: var(--primary-color);
  margin-top: var(--spacing-lg);
  line-height: var(--leading-normal);
  text-align: center;
}

/* Títulos destacados */
.highlighted {
  color: var(--accent-color);
}

.whatsApp {
  color: var(--success-color);
}

.titulo-mobile h1 {
  margin-left: 0 !important;
  font-size: 30px;
  text-align: center;
  color: #ffffff;
}

.mission-section h1 {
  color: #044478;
}

@media (max-width: 768px) {
  p {
    text-align: justify;
  }

  .title {
    font-size: 30px;
    text-align: center;
    font-family: "Coolvetica", sans-serif;
  }

  .section-container h6 {
    font-size: 18px !important;
  }

  .mission-section h1 {
    text-align: center;
    font-size: 30px;
  }

  .transformation-section .title {
    padding: 0;
    margin: 0;
    margin-top: 10px;
  }
}

/* Seção de Desconto Exclusivo */
.exclusive-discount-section {
  margin-bottom: var(--spacing-2xl);
}

.discount-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-2xl);
  padding: 1.3rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

/* Forçar cores específicas para elementos do card de desconto */
.discount-card h1,
.discount-card h2,
.discount-card h3,
.discount-card h4,
.discount-card h5,
.discount-card h6 {
  color: #1a202c !important;
}

.discount-card p {
  color: #2d3748 !important;
}

.discount-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  color: var(--text-white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.discount-badge i {
  margin-right: var(--spacing-xs);
  font-size: var(--text-xl);
}

.discount-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: #1a202c !important;
  margin-bottom: var(--spacing-md);
  line-height: var(--leading-tight);
}

.discount-subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-medium);
  color: #2d3748 !important;
  margin-bottom: var(--spacing-xl);
  line-height: var(--leading-relaxed);
}

.discount-benefits {
  margin-bottom: var(--spacing-xl);
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--text-primary);
}

.benefit-item i {
  margin-right: var(--spacing-sm);
  font-size: var(--text-lg);
}

.discount-description {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-light) 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-xl);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.discount-description p {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: #2d3748 !important;
  margin-bottom: var(--spacing-sm);
  font-weight: var(--font-medium);
}

.discount-description p:last-child {
  margin-bottom: 0;
}

.discount-cta {
  text-align: center;
}

.discount-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border: none;
  color: var(--text-white);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-md);
}

.discount-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
}

.discount-note {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discount-note i {
  color: var(--success-color);
  margin-right: var(--spacing-xs);
}

.exclusive-discount-text h1 {
  font-size: 40px;
  text-align: left;
  color: #2a8fc8;
}

.content h1 {
  font-size: 40px;
}

.integrations-hero h1 {
  text-align: center;
}

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

.demo-section .section-title {
  font-weight: 700;
  color: #333;
}

.cta-section .title {
  font-size: 45px;
  color: rgb(0, 115, 230);
  font-weight: 700;
}

.blue-background-section .title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Subtítulos */

.subtitle {
  font-size: 25px;
  color: black;
  margin: 5px;
  padding: 10px;
  font-family: "Poppins", sans-serif;
}

.mission-section h3 {
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
  color: white;
  font-size: 35px;
  font-family: "Poppins Extra-Bold", sans-serif;
}

.text-plans p {
  color: rgb(26, 135, 198);
}

.exclusive-discount-text h3 {
  text-align: start;
  color: #e95c1b;
  font-family: "Coolvetica", sans-serif;
}

.experience-section-hero p {
  color: #ffffff !important;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
}

@media (max-width: 768px) {
  .experience-section-hero {
    padding: 4rem 0;
    min-height: 80vh;
  }
  
  .experience-section-hero h1 {
    font-size: 2.5rem;
    text-align: left;
  }
  
  .experience-section-hero p {
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
  }
  
  .experience-section-hero .feature-list {
    margin: 0 0 2rem 0;
    max-width: 100%;
  }
  
  .experience-section-hero .feature-list li {
    text-align: left;
    font-size: 1rem;
  }
  
  .experience-section-hero .btn-primary {
    width: 100%;
    max-width: 300px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    margin: 0;
    display: inline-block;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .feature-experience-list li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-left: 28px;
  }
  
  .feature-experience-list li .checkmark-icon {
    width: 18px;
    height: 18px;
  }
  
  .feature-experience-list li .checkmark-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .differentials-section .subtitle {
    font-size: 18px;
    padding: 0;
    margin: 0;
  }

  .transformation-section .subtitle {
    font-size: 18px;
    padding: 0;
    margin: 0;
    margin-top: 10px;
  }
}

.blue-background-section .subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #e0e0e0;
}

h1,
h3,
h4,
h5,
h6 {
  font-family: "Coolvetica", sans-serif;
}

label,
a {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

/* ===========================================
   DIALOG RUSH NAVIGATION - ESPACIAL & INTEGRADO
   =========================================== */

/* Base navbar com tema espacial */
.navbar {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  letter-spacing: -0.01em;
}

/* Links de navegação simplificados */
.navbar .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin: 0 0.125rem;
  color: var(--text-primary);
  font-weight: var(--font-medium);
  font-size: var(--text-base);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

/* Hover state sutil */
.navbar .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(0, 123, 255, 0.08);
}

/* Estado ativo simples */
.navbar .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: var(--font-semibold);
  background: rgba(0, 123, 255, 0.12);
  position: relative;
}

/* Indicador ativo discreto */
.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

/* Estado de foco para acessibilidade */
.navbar .nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  background: rgba(0, 123, 255, 0.1);
}

/* ===========================================
   ANIMAÇÕES SIMPLES
   =========================================== */

/* Animação suave de entrada da navbar */
@keyframes navbarSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Aplicar animação de entrada */
.sticky-navbar {
  animation: navbarSlideDown 0.3s ease-out;
}

/* Sticky Navbar simplificado */
.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

/* Estado scrolled simplificado */
.sticky-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

/* ===========================================
   MODO ESCURO EXCLUSIVO
   =========================================== */
@media (prefers-color-scheme: dark) {
  /* Navbar modo escuro */
  .sticky-navbar {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 136, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .sticky-navbar.scrolled {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
    border-bottom: 2px solid rgba(255, 136, 0, 0.4);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  }
  
  /* Links do navbar modo escuro */
  .navbar .nav-link {
    color: #e2e8f0;
  }
  
  .navbar .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 136, 0, 0.15);
  }
  
  .navbar .nav-link.active {
    color: #ff8800 !important;
    background: rgba(255, 136, 0, 0.2);
  }
  
  .navbar .nav-link.active::after {
    background: #ff8800;
  }
  
  /* Botões modo escuro */
  .navbar-actions .btn-outline-primary {
    color: #ff8800;
    border-color: #ff8800;
  }
  
  .navbar-actions .btn-outline-primary:hover {
    color: #1a202c;
    background: #ff8800;
    border-color: #ff8800;
  }
  
  .navbar-actions .btn-primary {
    background: #ff8800;
    color: #1a202c;
  }
  
  .navbar-actions .btn-primary:hover {
    background: #e67e22;
  }
  
  /* Mobile modo escuro */
  @media (max-width: 768px) {
    .sticky-navbar {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    }
    
    .sticky-navbar.scrolled {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
    }
    
    .navbar-collapse {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
      border: 1px solid rgba(255, 136, 0, 0.2);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
  }
  
  /* Títulos modo escuro */
  .features-title,
  .pricing-title,
  .faq-header .title,
  .how-it-works-title,
  .transformation-section .title {
    color: #ffffff;
  }
  
  /* Subtítulos modo escuro */
  .features-subtitle,
  .pricing-subtitle,
  .faq-header .subtitle,
  .how-it-works-subtitle,
  .transformation-section .subtitle {
    color: #e2e8f0;
  }
  
  /* Textos modo escuro */
  .feature-card h5,
  .benefit-content h6,
  .timeline-step-title,
  .feature-content h5 {
    color: #ffffff;
  }
  
  .feature-card p,
  .benefit-content p,
  .timeline-step-description,
  .feature-content p,
  .plan-audience,
  .faq-body p {
    color: #cbd5e0;
  }
  
  /* Cards modo escuro */
  .feature-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 136, 0, 0.2);
  }
  
  .feature-card:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 136, 0, 0.3);
  }
  
  /* Seções modo escuro */
  .features-section {
    background: #1a202c;
  }
  
  .pricing-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a202c 100%);
  }
  
  .how-it-works-section {
    background: #1a202c;
  }
  
  
  
  /* Carousel arrows modo escuro */
  .carousel-arrow {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 136, 0, 0.6) !important;
    color: #ff8800 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  }
  
  .carousel-arrow:hover {
    background-color: rgba(255, 136, 0, 0.9) !important;
    color: #1a202c !important;
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.4) !important;
  }
  
  /* CTA modo escuro */
  .features-cta {
    background: linear-gradient(135deg, #ff8800 0%, #e67e22 100%);
  }
  
  .features-cta h3,
  .features-cta p {
    color: #1a202c;
  }
  
  .features-cta .btn-outline-primary {
    color: #1a202c;
    border-color: #1a202c;
  }
  
  .features-cta .btn-outline-primary:hover {
    color: #ffffff;
    background: #1a202c;
    border-color: #1a202c;
  }
}

/* Navbar Actions com Tema Espacial */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-actions .btn {
  font-family: var(--font-primary);
  font-weight: var(--font-medium);
  font-size: var(--text-base);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

/* Botão outline simplificado */
.navbar-actions .btn-outline-primary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.navbar-actions .btn-outline-primary:hover {
  color: white;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Botão primário simplificado */
.navbar-actions .btn-primary {
  background: var(--primary-color);
  border: none;
  color: white;
}

.navbar-actions .btn-primary:hover {
  background: var(--primary-dark);
}

/* Estados de foco para acessibilidade */
.navbar-actions .btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===========================================
   MOBILE-FIRST RESPONSIVE DESIGN
   =========================================== */

/* Mobile Navigation simplificada (< 768px) */
@media (max-width: 768px) {
  /* Navbar container adjustments */
  .sticky-navbar {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
  }
  
  .sticky-navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
  }
  
  /* Body padding adjustment */
  body {
    padding-top: 70px;
  }
  
  /* Navigation links mobile optimization */
  .navbar .nav-link {
    padding: 0.75rem 1rem;
    margin: 0.125rem 0;
    font-size: var(--text-base);
    text-align: left;
  }
  
  /* Estado ativo mobile simplificado */
  .navbar .nav-link.active::after {
    display: none;
  }
  
  .navbar .nav-link.active {
    background: rgba(0, 123, 255, 0.12);
    color: var(--primary-color) !important;
    font-weight: var(--font-semibold);
    border-left: 3px solid var(--primary-color);
    padding-left: 0.75rem;
  }
  
  /* Mobile navbar collapse simplificado */
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  /* Mobile navbar actions */
  .navbar-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .navbar-actions .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: var(--text-base);
    justify-content: center;
  }
  
  /* Mobile toggle button simplificado */
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
  }
  
  .navbar-toggler:hover {
    background: rgba(0, 123, 255, 0.1);
  }
}

/* Tablet Navigation (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar .nav-link {
    padding: 0.625rem 1rem;
    margin: 0 0.125rem;
    font-size: var(--text-sm);
  }
  
  .navbar-actions .btn {
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
  }
}

/* Large Desktop Navigation (> 1200px) */
@media (min-width: 1201px) {
  .navbar .nav-link {
    padding: 0.75rem 1.5rem;
    margin: 0 0.375rem;
  }
  
  .navbar-actions {
    gap: 1rem;
  }
}

/* ===========================================
   ACESSIBILIDADE & ESTADOS OTIMIZADOS
   =========================================== */

/* Suporte a alto contraste */
@media (prefers-contrast: high) {
  .navbar .nav-link {
    border: 1px solid transparent;
  }
  
  .navbar .nav-link:hover,
  .navbar .nav-link:focus {
    border-color: var(--primary-color);
  }
  
  .navbar .nav-link.active {
    border-color: var(--primary-color);
    background: rgba(0, 123, 255, 0.2);
  }
}

/* Suporte a movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .navbar .nav-link,
  .navbar-actions .btn,
  .sticky-navbar {
    transition: none;
    animation: none;
  }
}

/* Focus visible para navegação por teclado */
.navbar .nav-link:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: var(--radius-sm);
}

.navbar-actions .btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Estado de carregamento para botões */
.navbar-actions .btn.loading {
  position: relative;
  color: transparent;
}

.navbar-actions .btn.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .title {
    font-size: var(--text-4xl);
  }
  
  .pricing-title {
    font-size: var(--text-4xl);
  }
}

.btn-primary {
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-weight: var(--font-semibold);
  color: var(--text-white) !important;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.btn-primary:hover {
  box-shadow: 0 5px 10px rgba(0, 123, 255, 0.4);
}

.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6rem 0 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* ===== VIDEO BACKGROUND ===== */
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
  transition: opacity 800ms ease-out;
  opacity: 1;
}

.hero-video.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ===== HERO TEXT STYLES ===== */

/* ===== FLOATING ASTRONAUT ===== */
.floating-astronaut {
  position: absolute;
  top: 20%;
  right: 2%;
  transform: translateY(-50%);
  z-index: 1000;
  will-change: transform;
  pointer-events: none;
  opacity: 1;
}

.astronaut-image {
  width: 180px;
  height: auto;
  max-width: 225;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
  animation: float 4s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform, opacity;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 100%;
  padding-right: 2rem;
  will-change: transform;
}

/* ===== RESPONSIVE VIDEO ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0 3rem 0;
    min-height: 80vh;
  }
  
  .hero-video {
    object-position: center center;
    /* Reduz efeitos parallax em mobile para melhor performance */
    transform: translateZ(0);
  }
  
  .hero-content {
    /* Otimização mobile */
    transform: translateZ(0);
  }
  
  /* Astronauta responsivo */
  .floating-astronaut {
    display: none; /* Oculta em tablets */
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 70vh;
  }
  
  /* Astronauta mobile pequeno */
  .floating-astronaut {
    display: none; /* Oculta em mobile */
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: var(--spacing-lg);
}

/* Efeito de typing no hero title */
.typed-text {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 4px 12px;
  border-radius: var(--radius-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  display: inline-block;
  height: 1.2em;
  min-height: 1.2em;
  max-height: 1.2em;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  vertical-align: baseline;
}

/* Ocultar quando vazio */
.typed-text:empty {
  display: none;
}

.cursor {
  display: inline-block;
  width: 4px;
  height: 1.2em;
  margin-left: 3px;
  background: #ffffff;
  animation: blink 0.8s ease-in-out infinite;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  vertical-align: baseline;
}

.cursor.blink {
  animation: blink 0.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  }
  40%, 50% {
    background: transparent;
    box-shadow: 0 0 0px rgba(255, 255, 255, 0);
  }
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  margin: 0 auto;
  margin-bottom: var(--spacing-lg);
}

.hero-ctas {
  margin-bottom: var(--spacing-xl);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-ctas .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-ctas .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.hero-ctas .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.hero-ctas .btn-outline-primary {
  border: 2px solid #667eea;
  color: #667eea;
  background: transparent;
}

.hero-ctas .btn-outline-primary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-items: center;
  position: relative;
  z-index: 5;
}

.benefit-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-content h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
}


/* Responsividade com espaçamento otimizado */
@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }
  
  .hero-section {
    min-height: auto;
    padding: 4rem 0 3rem 0;
  }
  
  .hero-content {
    padding-right: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  @media (max-width: 768px) {
    /*.hero-ctas {
      min-width: 109%;
    }*/
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin-top: 2rem;
    justify-items: center;
  }
  
}

.hero-background {
  background-image: url("img/fundo.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-image {
  position: relative;
  width: 200px;
  height: auto;
  z-index: 3;
  transition: transform 1s ease-out, opacity 1s ease;
}

.glass-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.233);
  backdrop-filter: blur(22px);
  padding: 40px;
  border: solid 0.1px #ffffff75;
  border-radius: 25px;
  z-index: 2;
  transition: opacity 1s ease, transform 1s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
}

.glass-card p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #044478;
}

.glass-card li {
  font-size: 16px;
  color: #044478;
  font-weight: bold;
}

.glass-card button {
  background: linear-gradient(to right, #a1cee7, #2a8fc8);
  border: none;
  border-radius: 25px;
  color: black;
  width: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.rocket-container-mobile {
  width: 100%;
  padding: 20px 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .glass-card {
    max-width: 500px; /* Aumenta o tamanho do card para tablets */
    padding: 30px;
    transform: translateY(0); /* Evita deslocamentos indesejados */
  }

  .glass-card h1 {
    font-size: 28px; /* Tamanho maior para melhor legibilidade */
  }

  .glass-card p {
    font-size: 14px; /* Texto maior */
    margin-bottom: 15px;
  }

  .glass-card li {
    font-size: 12px; /* Ajuste no tamanho das listas */
  }

  .glass-card button {
    width: 120px;
    height: 30px;
    font-size: 12px;
  }

  .rocket-mobile {
    width: 150px; /* Ajusta o tamanho do foguete */
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px; /* Adiciona espaço entre o card e o foguete */
  }

  .rocket-container-mobile {
    padding: 30px 0;
  }
}

.glass-card ul {
  list-style-type: disc;
}

.rocket-mobile {
  width: 150px;
}

.background {
  background-image: url("img/fundo.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (min-width: 769px) {
  /* Card desaparece após rolar a página */
  .fixo-removido {
    opacity: 0;
    pointer-events: none; /* Impede interação */
    transform: translateY(-500px); /* Anima o card para cima */
  }

  /* Foguete visível na posição inicial */
  .rocket-descendo {
    transform: translateY(0); /* Sem deslocamento */
    opacity: 1; /* Visível */
  }

  /* Foguete subindo com efeito */
  .rocket-subindo {
    transform: translateY(-300px); /* Foguete sobe */
    opacity: 1; /* Continua visível */
  }

  /* Foguete escondido (fora da tela e invisível) */
  .rocket-escondido {
    opacity: 0;
    transform: translateY(-500px); /* Foguete some para cima */
    transition: opacity 1s ease, transform 1s ease; /* Suaviza saída */
  }

  /* Rocket Image */
  .rocket-image {
    position: relative;
    bottom: 0;
    right: 10%;
    max-height: 300px;
    z-index: 2;
  }
}

.section-container {
  font-size: 40px;
  text-align: center;
}

.faq-accordion-section .accordion-button::after {
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3E%3C/svg%3E");
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-accordion-section .accordion-button:not(.collapsed)::after {
  background-color: var(--text-white);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23007bff' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8'/%3E%3C/svg%3E");
  border: 2px solid var(--primary-color);
  background-position: center;
  background-repeat: no-repeat;
  transform: none;
}

/* Hover effects para os ícones */
.faq-accordion-section .accordion-button:hover::after {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.faq-accordion-section .accordion-button:not(.collapsed):hover::after {
  background-color: var(--primary-light);
  border-color: var(--primary-dark);
}

.accordion-item button {
  font-weight: bold;
  font-size: 18px;
}

/* Carousel FAQ */
.faq-image-placeholder {
  position: relative;
  /*padding: var(--spacing-lg);*/
  margin-left: 20px !important;
}

/* Reset margin em mobile */
@media (max-width: 768px) {
  .faq-image-placeholder {
    margin-left: 0 !important;
  }
  
  /* Ajustar botões em mobile */
  .btn-lg {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
  }
  
  /* Botões do hero em mobile */
  .hero-cta .btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    min-width: auto !important;
  }
}

/* Estilos para links que se comportam como botões */
.features-cta .btn-outline-primary {
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}

.features-cta .btn-outline-primary:hover {
  text-decoration: none !important;
}

/* Remover underline de todos os links que são botões */
a.btn, a[class*="btn-"] {
  text-decoration: none !important;
}

a.btn:hover, a[class*="btn-"]:hover {
  text-decoration: none !important;
}

a.btn:focus, a[class*="btn-"]:focus {
  text-decoration: none !important;
}

a.btn:active, a[class*="btn-"]:active {
  text-decoration: none !important;
}

/* Cards de Integração padronizados */
.integration-card {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-lg);
}

.integration-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.integration-card .card-body {
  padding: var(--spacing-xl);
}

.integration-card .card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.integration-card .card-subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.integration-card .card-text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

.integration-card .card-footer {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: auto;
}

/* Responsividade para cards de integração */
@media (max-width: 768px) {
  .integration-card {
    margin-bottom: var(--spacing-md);
  }
  
  .integration-card .card-body {
    padding: var(--spacing-lg);
  }
}

/* Modal do YouTube sem bordas */
#videoModal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

#videoModal .modal-dialog {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

#videoModal .modal-body {
  padding: 0;
  background: #000;
  border-radius: 0;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

/* Botão de fechar personalizado */
#videoModal .btn-close {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  opacity: 1;
  filter: none;
}

#videoModal .btn-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

#videoModal .btn-close::before {
  content: "×";
  color: #000;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  #videoModal .modal-dialog {
    max-width: 95%;
    width: 95%;
  }
  
  #videoModal .btn-close {
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
  }
  
  #videoModal .btn-close::before {
    font-size: 20px;
  }
}

.faq-image-placeholder .carousel {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--bg-primary);
}

.faq-image-placeholder .carousel-inner {
  border-radius: var(--radius-2xl);
}

.faq-image-placeholder .carousel-item {
  transition: transform 0.6s ease-in-out;
}

  .faq-image-placeholder img {
  width: 100%;
  height: 634px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  transition: transform 0.3s ease;
}

.faq-image-placeholder img:hover {
  transform: scale(1.02);
}

/* Indicadores do carousel */
.faq-image-placeholder .carousel-indicators {
  bottom: -50px;
}

.faq-image-placeholder .carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
  width: 12px;
  height: 12px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.faq-image-placeholder .carousel-indicators .active {
  background-color: var(--primary-dark);
  transform: scale(1.2);
}

.price {
  margin-top: 20px;
  margin-right: 10px;
  font-weight: 900;
  font-size: 2.5em;
  color: #ffffff;
  text-align: center !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.buttons-cards button,
.buttons-cards .btn-link-style {
  background: #e95c1b;
  border: none;
  border-radius: 25px;
  color: black;
  width: 300px;
  height: 40px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.buttons-cards button:hover,
.buttons-cards .btn-link-style:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 81, 0, 0.568);
  color: black;
}

.buttons-cards {
  display: flex;
  gap: 20px;
}

@media (max-width: 1024px) {
  .buttons-cards {
    gap: 10px;
  }
}

.cards-price {
  width: 100%;
  display: grid;
  gap: 30px;
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 100px;
}

@media (max-width: 1024px) {
  .plans-container {
    gap: 10px;
  }
}

@media (max-width: 912px) {
  .plans-container {
    gap: 30px;
    margin-left: 20px;
  }
}

@media (max-width: 899px) {
  .plans-container {
    align-items: center !important;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .plans-container {
    gap: 60px;
  }
}

.plan-card {
  position: relative;
  border-radius: 40px;
  padding: 20px !important;
  width: 300px !important;
  height: 450px;
  filter: none;
  backdrop-filter: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 912px) {
  .plan-card {
    width: 100% !important;
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  .plan-card {
    width: 100% !important;
    max-width: 350px;
  }
}

.plan-card img {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
  z-index: 2;
}

.plan-icon img {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  object-fit: contain;
  z-index: 2;
}

/* Correção para mobile - ícones não sobrepõem cards anteriores */
@media (max-width: 768px) {
  .pricing-grid {
    gap: 40px !important;
  }
  
  .plan-icon img {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    display: block;
  }
  
  .pricing-card {
    margin-top: 20px;
    padding-top: 30px !important;
    margin-bottom: 20px;
  }
  
  .pricing-card:first-child {
    margin-top: 0;
  }
}

.plan-title {
  font-size: 1.5em !important;
  font-weight: bold !important;
  color: #333 !important;
  margin-bottom: 10px !important;
}

.plan-card p {
  color: #ffffff;
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 15px;
}

.plan-price {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.plan-price .currency {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);  
  color: #333 !important;
}

.plan-price .amount {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-left: -5px;
  color: #333 !important;
}

.plan-price .period {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  margin-left: -10px;
}

.plan-button {
  display: block;
  background-color: #ff6600;
  color: black;
  font-weight: bold;
  padding: 10px;
  margin-top: 15px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
}

.mobile {
  display: block;
}

@media (min-width: 912px) {
  .mobile {
    display: none;
  }
}

.plan-card .price {
  margin-top: 20px;
  margin-right: 10px;
  font-weight: 900;
  font-size: 2.5em;
  color: #333 !important;
  text-align: center !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(to right, #a1cee7, #2a8fc8);
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.01);
}

.corrosel {
  position: absolute;
  max-width: 810px;
  width: 100%;
  top: 10px;
  left: 50%;
  transform: translateX(-68%);
}

.carrossel-text {
  text-align: justify;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: #fff;
}

@media (max-width: 1024px) {
  .corrosel {
    left: 60%;
    max-width: 810px;
    width: 100%;
  }
}

@media (max-width: 912px) {
  .corrosel {
    top: -75px;
    left: 59%;
    max-width: 750px;
    width: 100%;
  }

  .content {
    margin-left: 400px !important;
  }
}

@media (max-width: 853px) {
  .corrosel {
    top: -45px;
    left: 65%;
    max-width: 750px;
    width: 100%;
  }

  .content {
    margin-left: 400px !important;
  }
}

@media (max-width: 820px) {
  .corrosel {
    top: -30px;
    left: 64%;
    max-width: 750px;
    width: 100%;
  }

  .content {
    margin-left: 350px !important;
  }
}

.experience-wrapper {
  position: relative;
  display: flex;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}
.experience-section {
  display: flex;
  background-color: #5e90c9;
  border-radius: 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 100%;
}

.content {
  padding-bottom: 20px;
  margin-left: 500px;
  color: #ffffff;
  max-width: calc(100% - 500px);
  overflow: hidden;
}

.content .title {
  color: #ffffff !important;
}

.content p {
  color: #ffffff !important;
}

.content button {
  background-color: #e95c1b;
  width: 200px;
  border: none;
  color: white !important;
  font-weight: bold;
  border-radius: 20px;
  padding: 5px;
  transition: all 0.3s ease;
}

.content button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(17, 0, 255, 0.637);
}

.experience-wrapper-mobile {
  background-color: #5e90c9;
  width: 100%;
}

@media (max-width: 768px) {
  /*.experience-wrapper-mobile {
    min-width: 109%;
  }*/
}

.experience-wrapper-mobile .title {
  color: #ffffff !important;
}

.experience-wrapper-mobile p {
  color: #ffffff !important;
}

.carousel-mobile {
  padding-top: 20px;
  margin: auto;
  margin-bottom: 20px;
  width: 310px;
}

.content-mobile {
  margin: auto;
  padding-bottom: 20px;
}

.content-mobile p {
  text-align: justify;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: #ffffff !important;
  margin-bottom: var(--spacing-md);
}

.content-mobile button {
  display: flex;
  justify-content: center;
  margin: auto;
  background-color: #e95c1b;
  width: 200px;
  border: none;
  color: white !important;
  font-weight: bold;
  border-radius: 20px;
  padding: 5px;
}

.content-mobile button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mission-section {
  width: 100%;
  background: linear-gradient(to top, #ffffff, #62b3db);
  padding: var(--section-padding);
  color: white;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

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

.faq-section > .subtitle {
  color: #ffffff !important;
}
.mission-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  overflow: visible !important;
}

.mission-section h1 {
  font-weight: bold;
}

.mission-section h3 {
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  color: white;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
.mission-section p {
  text-align: justify;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
  .mission-section {
    padding: var(--section-padding-mobile);
    min-width: 100%;
  }
  
  @media (max-width: 768px) {
    /*.mission-section {
      min-width: 109%;
    }*/
  }
  
  .mission-section .container {
    padding: 0 var(--spacing-sm);
  }

  .mission-section h3 {
    padding-left: 0;
    margin-left: 0;
    text-align: center;
    font-weight: normal;
    font-size: 25px;
    font-family: "Coolvetica", sans-serif;
  }

  .mission-section p {
    margin-top: 10px;
    text-align: justify;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    color: var(--text-primary);
    margin: 0 auto;
    line-height: var(--leading-relaxed);
  }
}

.agent-body-wrapper {
  background-color: #a7d3f5;
  padding: 40px 0;
}

/* Cards agent */
.containers {
  padding: 50px;
  margin-left: 20px;
  overflow: visible !important;
  position: relative;
}

@media (max-width: 912px) {
  .containers {
    padding: 50px 0 50px 0;
    margin: 0;
  }
  .card-carousel {
    --carousel-min-width: 0 !important;
  }
}

/* Carousel Wrapper - Posicionamento dos botões */
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
  padding: 0 80px;
}

/* Carousel Navigation Arrows - FORÇA VISIBILIDADE */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 3px solid #007bff;
  padding: 0;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  border-radius: 50%;
  user-select: none;
  color: #007bff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  outline: none;
  opacity: 1 !important;
  visibility: visible !important;
  font-weight: bold;
}

.carousel-arrow:hover {
  background: #007bff;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.left-arrow {
  left: -70px;
}

.right-arrow {
  right: -70px;
}

/* Force visibility on desktop */
@media (min-width: 1200px) {
  .carousel-arrow {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .carousel-wrapper {
    overflow: visible !important;
  }
}

.card-carousel {
  --card-width: 80%;
  --card-max-width: 280px;
  --card-height: 450px;
  --carousel-min-width: 900px;
  z-index: 1;
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: var(--card-height);
  min-width: var(--carousel-min-width);
  max-width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
  transition: filter 0.3s ease;
}
.card {
  transition: all 0.3s ease;
}
@media screen and (max-width: 640px) {
  .card-carousel {
    margin-left: calc((100vw - var(--carousel-min-width) - 40px) / 2);
  }
}
.card-carousel.smooth-return {
  transition: all 0.3s ease;
}
.card-carousel .card {
  background: whitesmoke;
  width: var(--card-width);
  max-width: var(--card-max-width);
  text-align: center;
  padding: 1em;
  min-width: 350px;
  height: var(--card-height);
  position: absolute;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 1em;
  filter: brightness(0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease, left 0.6s ease, filter 0.6s ease;
}
.card.highlight {
  filter: brightness(1);
}
.card:nth-of-type(1) .image-container {
  background-image: url(img/avatars/1.png);
}
.card:nth-of-type(2) .image-container {
  background-image: url(img/avatars/2.png);
}
.card:nth-of-type(3) .image-container {
  background-image: url(img/avatars/3.png);
}
.card:nth-of-type(4) .image-container {
  background-image: url(img/avatars/4.png);
}
.card:nth-of-type(5) .image-container {
  background-image: url(img/avatars/5.png);
}
.image-container {
  width: 250px;
  height: 200px;
  position: relative;
  background-size: cover;
  margin-bottom: 2em;
}
.image-container::after {
  content: "";
  display: block;
  width: 120%;
  height: 120%;
  border-radius: 100%;
  position: absolute;
  top: calc(-10% - 3px);
  left: calc(-10% - 3px);
  max-width: 120%;
  max-height: 120%;
  overflow: hidden;
}

/* Carousel Navigation Buttons - Redesigned */
.carousel-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  border: 2px solid #007bff !important;
  padding: 0 !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-radius: 50% !important;
  user-select: none !important;
  color: #007bff !important;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2) !important;
  width: 60px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
  outline: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.carousel-arrow:hover {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
  border-color: #0056b3 !important;
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3) !important;
}

.left-arrow {
  left: -80px !important;
}

.right-arrow {
  right: -80px !important;
}

/* Ensure buttons are visible on desktop */
@media (min-width: 1200px) {
  .carousel-arrow {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* cards agent mobile */
.agent {
  max-width: 1200px;
  margin: 0 auto;
}

.agent-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.agent-card-image {
  object-fit: cover;
}

.agent-card-content {
  padding: 20px;
}

.agent-card-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.agent-card-description {
  font-size: 1em;
  color: #666;
  line-height: 1.5;
}

.text-plans {
  color: #1a87c6;
}

label {
  font-weight: bold;
}

.save-form {
  padding: 10px 20px;
  width: 100vh;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.save-form:hover {
  background-color: #0056b3;
}

/* Responsividade para seção de desconto */
@media (max-width: 768px) {
  .discount-card {
    padding: var(--spacing-lg);
    margin: var(--spacing-md);
  }
  
  .discount-title {
    font-size: var(--text-2xl);
    text-align: center;
  }
  
  .discount-subtitle {
    font-size: var(--text-lg);
    text-align: center;
  }
  
  .discount-btn {
    width: 100%;
    padding: var(--spacing-md);
  }
  
  .discount-note {
    font-size: var(--text-xs);
    flex-direction: column;
    text-align: center;
  }
  
  .exclusive-discount-text h1 {
    margin-left: 0;
    padding-left: 0;
    font-size: 35px;
    text-align: center;
  }
}

.exclusive-discount-text button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  padding: 20px;
  border-radius: 20px;
  /*background: rgba(255, 255, 255, 0.1);*/
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.card h3 {
  color: #0073e6;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
}

.card button {
  background-color: #ff4500;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card button:hover {
  background-color: #e63e00;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* @media (min-width: 540px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
} */

.text-section {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
}

.text-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2a8fc8;
}

.text-section p {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-section input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-section button {
  font-family: "Poppins", sans-serif;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-section button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(5, 168, 243, 0.568);
}

.faq-section {
  width: 100%;
  margin: 50px auto;
  background: #4d81c2;
  padding: var(--spacing-lg);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white;
}
.faq-title {
  font-family: "Coolvetica", sans-serif;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.faq-item {
  background: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  margin-bottom: 15px;
}
.faq-question {
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  background: none;
  color: white;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-answer {
  display: none;
  padding: 10px;
  color: var(--text-primary);
  border-radius: 5px;
  margin-top: 5px;
}

/* Pag - integrações */

.integrations-hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
}

.integrations-hero p {
  text-align: center;
  margin: 5px;
  padding: 10px;
}

@media (max-width: 768px) {
  .integrations-hero p {
    font-size: 16px;
    text-align: justify;
  }
}

.btn-orange {
  background: #ff8800;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-family: "poppins", sans-serif;
}

.btn-orange:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 10px rgba(255, 136, 0, 0.4);
  color: #fff;
  background: #ff8800;
}

.platforms-section h2 {
  color: #044478;
}

.platform-cards-row {
  gap: 0 !important;
}

@media (max-width: 767px) {
  .platform-cards-row {
    gap: 20px !important;
  }
}

.platform-card {
  width: 100%;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border: solid 1px #e0e0e0;
  background: #ffffff;
  border-radius: 1.5rem;
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 10px rgba(22, 8, 146, 0.3);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem auto;
}

/* Icon styles */
.icon-style {
  font-size: 2.5rem;
}

.ia-icons {
  width: 30px;
  transition: all 0.3s ease;
}

.ia-icons:hover {
  transform: scale(1.2);
}

.text-whatsapp {
  background: linear-gradient(to bottom, #4fce5d, #25d366);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-instagram {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-telegram {
  background: linear-gradient(#30c1f5, #1979e0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-messenger {
  background: linear-gradient(to bottom, #00b2ff, #006aff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.platform-title {
  margin-bottom: 0.5rem;
  color: black;
}

.available {
  border: solid 1px #468488;
  background: #0d7bc47a;
  color: #034192;
  border-radius: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.shortly {
  border: solid 1px #f37521;
  background: #ffa60086;
  color: orangered;
  border-radius: 20px;
  padding-left: 7px;
  padding-right: 7px;
}

.platform-description {
  margin: 10px;
  padding: 5px;
  text-align: center;
  margin-bottom: 1rem;
  color: #444;
}

@media (max-width: 768px) {
  .platform-description {
    text-align: justify;
  }
}

/* Seção API Integration - Melhorada com UX/UI */
.api-integration-section {
  width: 100%;
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.api-integration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 136, 0, 0.05) 100%);
  z-index: 1;
}

.api-integration-section .container {
  position: relative;
  z-index: 2;
}

.api-title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: #1a365d;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.api-subtitle {
  font-size: var(--text-xl);
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.api-content {
  padding-right: var(--spacing-xl);
}

.api-features {
  margin-bottom: var(--spacing-xl);
}

.api-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.api-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 123, 255, 0.2);
}

.api-feature-icon {
  margin-right: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(0, 123, 255, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.api-feature-icon i {
  font-size: 1.5rem;
}

.api-feature-content h5 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: #1a365d;
  margin-bottom: var(--spacing-xs);
}

.api-feature-content p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.api-description {
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
}

.api-description p {
  color: #2d3748;
  line-height: 1.7;
  margin: 0;
  font-size: var(--text-base);
}

.api-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.api-visual {
  position: relative;
}

.api-visual-container {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.api-visual-container img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
}

.api-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.floating-icon-1 {
  top: 20%;
  left: -10px;
  animation-delay: 0s;
}

.floating-icon-2 {
  top: 60%;
  right: -10px;
  animation-delay: 1s;
}

.floating-icon-3 {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2s;
}

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

.floating-icon-2 {
  transform: translateY(0px);
}

.floating-icon-3 {
  transform: translateX(-50%) translateY(0px);
}

/* Responsividade */
@media (max-width: 768px) {
  .api-integration-section {
    padding: var(--section-padding-mobile);
  }
  
  .api-title {
    font-size: var(--text-3xl);
  }
  
  .api-subtitle {
    font-size: var(--text-base);
  }
  
  .api-content {
    padding-right: 0;
    margin-bottom: var(--spacing-xl);
  }
  
  .api-feature-item {
    padding: var(--spacing-md);
  }
  
  .api-feature-icon {
    width: 50px;
    height: 50px;
    margin-right: var(--spacing-md);
  }
  
  .api-feature-icon i {
    font-size: 1.2rem;
  }
  
  .api-feature-content h5 {
    font-size: var(--text-base);
  }
  
  .api-cta {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .api-cta .btn {
    width: 100%;
  }
  
  .api-visual-container {
    padding: var(--spacing-lg);
  }
  
  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Modo escuro */
@media (prefers-color-scheme: dark) {
  .api-integration-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  }
  
  .api-integration-section::before {
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1) 0%, rgba(255, 136, 0, 0.1) 100%);
  }
  
  .api-title {
    color: #ffffff;
  }
  
  .api-subtitle {
    color: #e2e8f0;
  }
  
  .api-feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 123, 255, 0.2);
  }
  
  .api-feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.3);
  }
  
  .api-feature-icon {
    background: rgba(0, 123, 255, 0.2);
  }
  
  .api-feature-content h5 {
    color: #ffffff;
  }
  
  .api-feature-content p {
    color: #cbd5e0;
  }
  
  .api-description {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--accent-color);
  }
  
  .api-description p {
    color: #e2e8f0;
  }
  
  .api-visual-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 123, 255, 0.2);
  }
}

.webhooks-section {
  color: white;
  text-align: center;
  margin: 20px;
  border-radius: 10px;
}

.text-cards {
  color: #044478;
  text-align: center;
}

.platform-icon i {
  font-size: 50px;
  margin-bottom: 10px;
  color: #007bff;
}

.integration-section h2 {
  text-align: center;
  margin-top: 20px;
}

.card-title {
  color: #fa7e1e;
  font-size: 25px;
}

.card-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  padding: 5px;
}

.card-text {
  font-size: 16px;
  padding: 10px;
  color: #444;
  text-align: center;
}

@media (max-width: 768px) {
  .card-text {
    text-align: justify;
  }
}

/* pag experience */

/* Hero Section */
.experience-section-hero {
  position: relative;
  padding: 6rem 0;
  margin: 0 -15px;
  background: url(img/right-rocket.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23ffffff" fill-opacity="1" d="M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,186.7C672,203,768,181,864,154.7C960,128,1056,96,1152,96C1248,96,1344,128,1392,144L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.feature-list {
  list-style: none;
  padding: 10px;
  margin: 5px;
  margin-bottom: 2rem;
}

.experience-section-hero .feature-list li {
  margin-bottom: 1rem;
  padding-left: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: #ffffff !important;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.experience-section-hero .feature-list li .checkmark-icon {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1) !important; /* Converte para branco */
}

.experience-section-hero .btn-primary {
  background: linear-gradient(135deg, #ff8800 0%, #e95c1b 100%);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
  transition: all 0.3s ease;
  margin-left: 0;
  display: inline-block;
}

.experience-section-hero .btn-primary:hover {
  background: linear-gradient(135deg, #e95c1b 0%, #d14800 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 136, 0, 0.4);
}

.experience-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  text-align: left;
}

.experience-section-hero .feature-list {
  text-align: left;
  max-width: 600px;
  margin: 0 0 2rem 0;
  padding: 0;
  list-style: none;
}

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

.transformation-features {
  max-width: 500px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  background-color: var(--white);
}

.feature-item:hover,
.feature-item.active {
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: solid 1px #0073e6;
  transform: translateY(-5px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(30, 136, 229, 0.1);
  margin-right: 1rem;
  color: #034192;
  font-size: 1.5rem;
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Chat Demo Card */
.chat-demo-card {
  background-color: #f5f7fa;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.chat-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #006aff;
  color: white;
}

.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  margin-right: 1rem;
  overflow: hidden;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 24 24" fill="none" stroke="%231e88e5" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="10" rx="2"></rect><circle cx="12" cy="5" r="2"></circle><path d="M12 7v4"></path><line x1="8" y1="16" x2="8" y2="16"></line><line x1="16" y1="16" x2="16" y2="16"></line></svg>');
  background-size: cover;
  background-position: center;
}

.chat-info h4 {
  margin-bottom: 0;
  color: white;
  font-size: 1rem;
}

.chat-info p {
  margin-bottom: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

.chat-body {
  padding: 1rem;
  height: 350px;
  overflow-y: auto;
  background-color: #f5f7fa;
}

.message {
  margin-bottom: 1rem;
  position: relative;
  max-width: 80%;
}

.message p {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.message .time {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: block;
}

.incoming {
  margin-right: auto;
}

.incoming p {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 0 1rem 1rem 1rem;
}

.outgoing {
  margin-left: auto;
}

.outgoing p {
  background-color: #007bff;
  color: white;
  border-radius: 1rem 0 1rem 1rem;
}

.outgoing .time {
  text-align: right;
}

.cta-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.demo-section {
  padding: 60px 20px;
}

.demo-section .section-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

.demo-section .btn {
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-section .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.demo-section .image-container img {
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blue-background-section {
  background: #4d81c2;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 60px 20px;
}

.blue-background-section .btn {
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blue-background-section .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.differentials-section .differentials-card {
  border: none;

  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.differentials-section .differentials-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

.cta-buttons .btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

footer {
  width: 100%;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0b1e37 100%);
  color: var(--text-white);
  padding: var(--spacing-lg) var(--spacing-md);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-column {
  flex: 1;
  min-width: 180px;
  max-width: 300px;
  text-align: left;
}

.footer-column h3 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--spacing-sm);
  color: var(--text-white);
  text-align: left;
}

.footer-column ul {
  list-style: none;
  padding-left: 0 !important;
}

.footer-column ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: var(--spacing-xs) 0;
  text-align: center;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.social-icons {
  margin-top: var(--spacing-sm);
  display: flex;
  gap: var(--spacing-sm);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: var(--text-sm);
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--spacing-lg);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  gap: var(--spacing-md);
}

.footer-bottom .copyright {
  flex: 1;
  line-height: 1.5;
}

.footer-bottom .copyright p {
  margin: 0;
  padding: 0;
}

.footer-bottom .footer-links {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  line-height: 1.5;
}

.footer-bottom .footer-links a {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1.5;
  vertical-align: baseline;
}

.footer-bottom .footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom ul {
  display: flex;
  list-style: none;
}

.footer-bottom ul li {
  margin-left: var(--spacing-md);
}

.footer-bottom ul li a {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom ul li a:hover {
  color: var(--primary-color);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-column {
  flex: 1;
  min-width: 180px;
  max-width: 300px;
  text-align: left;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding-left: 0 !important;
}

.footer-column ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
  text-align: left;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* Responsividade do Footer */
@media (max-width: 768px) {
  .menu {
    width: 92% !important;
  }

  footer {
    padding: var(--spacing-md) var(--spacing-sm);
    min-width: 100%;
  }
  
  @media (max-width: 768px) {
    /*footer {
      min-width: 109%;
    }*/
  }
  
  .footer-container {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: left;
    padding: 0 1rem;
    width: 100%;
  }
  
  @media (max-width: 768px) {
    /*.footer-container {
      width: 109%;
    }*/
  }

  .footer-column {
    flex: 1;
    width: 100% !important;
  }
  
  @media (max-width: 768px) {
    /*.footer-column {
      width: 109% !important;
    }*/
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
  }

  .footer-bottom .footer-links {
    justify-content: center;
    gap: var(--spacing-md);
  }

  .footer-bottom ul {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
  }

  .footer-bottom ul li {
    margin: 0;
  }
}

/* Estilos para o navbar-brand */
.navbar-brand {
  display: flex !important;
  align-items: center;
  margin-right: 3rem;
  padding: 0;
}

/* Estilos para o logo do cabeçalho */
.logo {
  max-width: 180px;
  height: auto;
    display: block;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Estilos específicos para garantir visibilidade do logo */
.navbar-brand .logo {
  width: 180px;
  max-width: 180px;
  height: auto;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Estilos para o logo do footer */
.footer-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: var(--spacing-sm);
  filter: brightness(0) invert(1); /* Torna o logo branco para contrastar com o fundo escuro */
  transition: all 0.3s ease;
}

/* Forçar cor branca para textos específicos do footer */
.footer-column p {
  color: var(--text-white) !important;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.footer-bottom p {
  color: var(--text-white) !important;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
}

.rocket-animation {
  position: relative;
  z-index: -1;
  width: 200px;
  height: auto;
  margin-bottom: 40px;
}

.rocket-animation .nuvem {
  bottom: -70px;
  width: 200px;
}

.rocket-animation img {
  width: 100%;
  max-width: 200px;
}

.section-foguete {
  width: auto;
  margin-left: 249px;
  margin-top: 100px;
}

@keyframes subirFoguete {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-500px);
    opacity: 0;
  }
}

.rocket-animation .foguete.subindo {
  animation: subirFoguete 2s forwards;
}

@keyframes tremor {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
  75% {
    transform: translateX(-1px);
  }
  100% {
    transform: translateX(0);
  }
}

.rocket-animation.tremendo {
  animation: none;
}

.rocket-animation .foguete.tremendo {
  animation: tremor 0.2s infinite;
}

@keyframes fadeOutNuvem {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.rocket-animation .nuvem.desaparecendo {
  animation: fadeOutNuvem 2s forwards;
}

@media (max-width: 1024px) {
  .section-foguete {
    display: none !important;
  }
}

/* Oculta ambos por padrão */
.container-img-tabete {
  display: none;
}

.container-remove-img {
  display: none;
}

.section-form-desktop {
  display: none;
}

@media (min-width: 768px) {
  .section-form-desktop {
    display: block;
  }
}

.section-form-tablete {
  display: block;
}

@media (max-width: 912px) {
  .section-form-tablete {
    display: block;
  }
}

@media (min-width: 913px) {
  .section-form-tablete {
    display: none;
  }
}

/* Seção de Recursos */
.features-section {
  width: 100%;
  padding: var(--section-padding);
  background: #f8f9fa;
  position: relative;
  z-index: 10;
  /*min-width: 108%;*/
  margin-top: 200px;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: var(--spacing-sm);
}

.features-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

.features-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-3xl);
  text-align: center;
  color: var(--text-white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.features-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: var(--text-white);
  margin-bottom: var(--spacing-2xl);
  opacity: 0.95;
}

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

.cta-buttons .btn {
  padding: var(--spacing-md) var(--spacing-xl);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  min-width: 200px;
  position: relative;
  overflow: hidden;
}

.cta-buttons .btn-primary {
  background: var(--bg-primary);
  color: var(--primary-color);
  border: 2px solid var(--bg-primary);
  box-shadow: var(--shadow-md);
}

.cta-buttons .btn-primary:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-buttons .btn-outline-primary {
  border: 2px solid var(--text-white);
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-weight: var(--font-semibold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 
    0 4px 15px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-outline-primary:hover {
  background: var(--text-white);
  color: var(--primary-color);
  border-color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(255, 255, 255, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.1);
  text-shadow: none;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .features-cta {
    padding: var(--spacing-xl);
    margin: 0 var(--spacing-sm);
  }
  
  .cta-content h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-sm);
  }
  
  .cta-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-xl);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    padding: var(--spacing-md) var(--spacing-lg);
  }
}

/* Seção Como Funciona - Timeline Minimalista */
.how-it-works-section {
  width: 100%;
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

@media (max-width: 768px) {
  /*.how-it-works-section {
    width: 109%;
  }*/
}

.how-it-works-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: var(--spacing-sm);
}

.how-it-works-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  margin: 0 auto;
}

/* Timeline Minimalista */
.simple-timeline {
  margin: 3rem auto 0;
  position: relative;
}

/* Linha da Timeline */
.timeline-line-container {
  position: relative;
  margin: 2rem 0 3rem;
  height: 60px;
  display: flex;
  align-items: center;
}

.timeline-line {
  height: 2px;
  background: #e2e8f0;
  position: absolute;
  top: 50%;
  left: 2rem;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-numbers {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 2rem;
}

.timeline-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.timeline-number-text {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #4a5568;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 3px solid #f8f9fa;
  margin-bottom: 0.5rem;
}

.timeline-step-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a5568;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.timeline-number:hover .timeline-number-text {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}

.timeline-number:hover .timeline-step-name {
  color: #667eea;
}

.timeline-number--active .timeline-number-text {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}

.timeline-number--active .timeline-step-name {
  color: #667eea;
  font-weight: 700;
}

/* Navegação */
.timeline-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.timeline-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #667eea;
  background: white;
  color: #667eea;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.timeline-nav-btn:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.timeline-nav-btn--inactive {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Conteúdo dos Passos */
.timeline-content {
  position: relative;
  min-height: 200px;
}

.timeline-step {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
  text-align: center;
  padding: 2rem;
}

.timeline-step--active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.timeline-step-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 1rem;
}

.timeline-step-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}

/* Responsividade */
@media (max-width: 768px) {
  .how-it-works-title {
    font-size: 2rem;
  }
  
  .how-it-works-subtitle {
    font-size: 1.1rem;
  }
  
  .timeline-numbers {
    padding: 0 1rem;
  }
  
  .timeline-number {
    padding: 0 0.5rem;
  }
  
  .timeline-number-text {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .timeline-step-name {
    font-size: 0.8rem;
  }
  
  .timeline-step {
    padding: 1.5rem;
  }
  
  .timeline-step-title {
    font-size: 1.5rem;
  }
  
  .timeline-step-description {
    font-size: 1rem;
  }
}

/* Seção de Preços Renovada */
.pricing-section {
  position: relative;
  width: 100%;
  padding: var(--section-padding);
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  overflow: hidden;
}

@media (max-width: 768px) {
  /*.pricing-section {
    width: 109%;
  }*/
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/paralax/cloud1.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.3;
  z-index: 1;
}

.pricing-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

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

.pricing-title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: var(--spacing-sm);
}

.pricing-subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-top: 8rem;
}

.pricing-card {
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--secondary-light);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card .feature-list li {
  color: var(--text-primary) !important;
}

.pricing-card .plan-features h6 {
  color: var(--text-primary) !important;
}

/* Botões CTA dos Pricing Cards */
.pricing-card .btn {
  margin-top: auto;
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Botão Propulsão - Tema Básico */
.pricing-card:not(.popular):not([class*="galactic"]) .btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.pricing-card:not(.popular):not([class*="galactic"]) .btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.pricing-card:not(.popular):not([class*="galactic"]) .btn::before {
  content: '🚀';
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Botão Interplanetário - Tema Popular */
.pricing-card.popular .btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  font-weight: var(--font-bold);
}

.pricing-card.popular .btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.pricing-card.popular .btn::before {
  content: '⭐';
  margin-right: 0.5rem;
  font-size: 1.2rem;
  animation: starGlow 2s ease-in-out infinite;
}

@keyframes starGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Botão Galáctico - Tema Premium */
.pricing-card:nth-child(3) .btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  font-weight: var(--font-bold);
}

.pricing-card:nth-child(3) .btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.pricing-card:nth-child(3) .btn::before {
  content: '🌟';
  margin-right: 0.5rem;
  font-size: 1.2rem;
  animation: starShine 3s ease-in-out infinite;
}

@keyframes starShine {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    filter: brightness(1);
  }
  50% { 
    transform: scale(1.1) rotate(180deg);
    filter: brightness(1.3);
  }
}

/* Suporte para movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .pricing-card .btn::before {
    animation: none;
  }
  
  .pricing-card .btn:hover {
    transform: none;
  }
  
  .pricing-card:hover {
    transform: none;
  }
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
  border: 2px solid #f59e0b;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
}

.plan-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.plan-description {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--spacing-md);
  font-size: var(--text-sm);
}

.plan-price {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.plan-price span {
  font-size: var(--text-base);
  color: #333 !important;
  font-weight: var(--font-normal);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-audience {
  color: #4a5568;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.plan-features h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #2d3748;
}

.feature-list i {
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}


.feature-experience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.feature-experience-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 30px;
}

.feature-experience-list li .checkmark-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: transparent;
  border-radius: 4px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(0) invert(1); /* Converte para branco */
  text-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.feature-experience-list li .checkmark-icon svg {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Transformation Section Styles */
.transformation-section {
  background: #ffffff;
  padding: 5rem 0;
}

.transformation-section .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.transformation-section .subtitle {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.transformation-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item.active {
  background: rgba(0, 123, 255, 0.03);
  border-color: #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.08);
}

.feature-item:hover {
  background: rgba(0, 123, 255, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 136, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;

}

.feature-icon i {
  font-size: 1.25rem;
  color: #ff8800;
}

.feature-icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Cores personalizadas para cada SVG */
.feature-card:nth-child(1) .feature-icon-img {
  filter: hue-rotate(200deg) saturate(1.5) brightness(1.1);
}

.feature-card:nth-child(2) .feature-icon-img {
  filter: hue-rotate(30deg) saturate(1.8) brightness(1.2);
}

.feature-card:nth-child(5) .feature-icon-img {
  filter: hue-rotate(300deg) saturate(1.6) brightness(1.1);
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feature-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
}

/* Chat Demo Card */
.chat-demo-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-header {
  background: #25d366;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-pic {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chat-info h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.chat-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
}

.chat-body {
  padding: 1rem;
  background: #e5ddd5;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
}

.message {
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease-out;
}

.message.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animação de entrada */
@keyframes messageSlideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.message.incoming {
  align-items: flex-start;
}

.message.outgoing {
  align-items: flex-end;
}

.message p {
  background: #ffffff;
  padding: 0.625rem 0.875rem;
  border-radius: 18px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #2d3748;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  max-width: 80%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.message.incoming p {
  background: #ffffff;
  color: #2d3748;
  border-bottom-left-radius: 4px;
}

.message.outgoing p {
  background: #dcf8c6;
  color: #2d3748;
  border-bottom-right-radius: 4px;
}

.message .time {
  font-size: 0.7rem;
  color: #999999;
  margin-top: 0.25rem;
  font-weight: 400;
}

/* Scrollbar personalizada para o chat */
.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
  .transformation-section {
    padding: 3rem 0;
  }
  
  .transformation-section .title {
    font-size: 2rem;
    text-align: center;
  }
  
  .transformation-section .subtitle {
    font-size: 1rem;
    text-align: center;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .feature-icon {
    align-self: center;
  }
  
  .chat-demo-card {
    margin-top: 2rem;
  }
}

/* Webhooks Banner Section */
.webhooks-banner-section {
  padding: 0;
  margin: 2rem 0;
}

.webhooks-banner {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 500px;
}

.webhooks-visual {
  flex: 0 0 50%;
  background: #2C304A;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  min-height: 500px;
}

.monitor-container {
  perspective: 1000px;
  transform: rotateY(-10deg) rotateX(5deg);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monitor-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.screen-header {
  background: #f0f0f0;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid #ddd;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-btn.red { background: #ff5f57; }
.control-btn.yellow { background: #ffbd2e; }
.control-btn.green { background: #28ca42; }

.window-title {
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.window-icons {
  display: flex;
  gap: 4px;
}

.window-icon {
  width: 16px;
  height: 16px;
  background: #ddd;
  border-radius: 2px;
}

.screen-content {
  padding: 20px;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.webhook-icon {
  margin-bottom: 20px;
}

.webhook-symbol {
  width: 80px;
  height: 80px;
  background: #4A69BD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circle {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
}

.circle-1 {
  top: 16px;
  left: 16px;
}

.circle-2 {
  top: 16px;
  right: 16px;
}

.circle-3 {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.language-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 280px;
}

.lang-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lang-symbol {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: bold;
  color: #ffffff;
}

/* JavaScript */
.lang-icon.javascript .lang-symbol {
  background: #f7df1e;
  color: #000000;
  font-weight: 700;
}

/* C# */
.lang-icon.csharp .lang-symbol {
  background: #239120;
  color: #ffffff;
}

/* Python */
.lang-icon.python .lang-symbol {
  background: #3776ab;
  color: #ffffff;
}

/* Java */
.lang-icon.java .lang-symbol {
  background: #f89820;
  color: #ffffff;
}

/* VB.NET */
.lang-icon.vbnet .lang-symbol {
  background: #00599c;
  color: #ffffff;
}

/* Node.js */
.lang-icon.nodejs .lang-symbol {
  background: #68a063;
  color: #ffffff;
}

.lang-name {
  font-size: 8px;
  color: #666;
  font-weight: 500;
}

.webhooks-content {
  flex: 0 0 50%;
  background: #6699CC;
  display: flex;
  align-items: center;
  padding: 3rem;
  position: relative;
}

.content-wrapper {
  color: #ffffff;
}

.webhooks-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.webhooks-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ffffff;
}

.webhooks-highlight {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-webhooks {
  background: #E67E22;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-webhooks:hover {
  background: #d35400;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
  .webhooks-banner {
    flex-direction: column;
    min-height: auto;
  }
  
  .webhooks-visual {
    flex: none;
    padding: 1rem;
    min-height: 400px;
  }
  
  .monitor-container {
    transform: none;
  }
  
  .monitor-screen {
    width: 100%;
    height: 100%;
  }
  
  .webhooks-content {
    flex: none;
    padding: 2rem;
  }
  
  .webhooks-title {
    font-size: 2rem;
  }
  
  .webhooks-text {
    font-size: 0.9rem;
  }
}

/* FAQ Section Styles - Condensed */
.faq-header {
  margin-bottom: 1.5rem;
}

.faq-header .title {
  color: #1a365d;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-header .subtitle {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.4;
}

.faq-accordion {
  max-width: 100%;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.faq-button {
  background: none;
  border: none;
  padding: 0.875rem 1rem;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.faq-button:focus {
  outline: none;
  box-shadow: none;
}

.faq-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a365d;
  line-height: 1.3;
  flex: 1;
  margin-right: 0.75rem;
}

.faq-icon {
  font-size: 1rem;
  color: #007bff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-button:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}

.faq-collapse {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-body {
  padding: 0 1rem 1rem;
}

.faq-body p {
  color: #4a5568;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Active state */
.faq-item:has(.faq-button:not(.collapsed)) {
  border-color: #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.08);
}

/* Responsividade */
@media (max-width: 768px) {
  .faq-header {
    margin-bottom: 1rem;
  }
  
  .faq-header .title {
    font-size: 1.5rem;
  }
  
  .faq-header .subtitle {
    font-size: 0.85rem;
  }
  
  .faq-button {
    padding: 0.75rem 0.875rem;
  }
  
  .faq-question {
    font-size: 0.9rem;
  }
  
  .faq-body {
    padding: 0 0.875rem 0.875rem;
  }
  
  .faq-body p {
    font-size: 0.8rem;
  }
}

.pricing-footer {
  margin-top: 3rem;
}

.trial-info {
  font-size: 1.1rem;
  color: #ffffff !important;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.pricing-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing-actions .btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.pricing-actions .btn-outline-primary {
  border: 2px solid #667eea;
  color: #667eea;
}

.pricing-actions .btn-outline-primary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.pricing-actions .btn-outline-warning {
  border: 2px solid #f59e0b;
  color: #f59e0b;
}

.pricing-actions .btn-outline-warning:hover {
  background: #f59e0b;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .pricing-title {
    font-size: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .pricing-card {
    padding: var(--spacing-lg);
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
  
  .pricing-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Responsividade dos botões CTA */
  .pricing-card .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--text-base);
  }
  
  .pricing-card .btn::before {
    font-size: 1rem;
  }
}

/* Seção FAQ/Accordion */
.faq-accordion-section {
  width: 100%;
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.faq-accordion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.faq-accordion-section .accordion {
  margin: 0;
}

.faq-accordion-section .accordion-item {
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--secondary-light);
  background: var(--bg-primary);
  transition: all 0.3s ease;
}

.faq-accordion-section .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.faq-accordion-section .accordion-button {
  padding: var(--spacing-lg);
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
  background: var(--bg-primary);
  border: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.faq-accordion-section .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.faq-accordion-section .accordion-button.collapsed {
  border-radius: var(--radius-xl);
}

.faq-accordion-section .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  border-color: var(--primary-color);
}

.faq-accordion-section .accordion-body {
  padding: var(--spacing-lg);
  background: var(--bg-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border-top: 1px solid var(--secondary-light);
  min-height: 300px;
  max-height: 300px;
}

/* Garantir que o accordion expandido mantenha bordas consistentes */
.faq-accordion-section .accordion-item:not(:last-child) {
  border-bottom: none;
}

.faq-accordion-section .accordion-item .accordion-button.collapsed {
  border-bottom: 1px solid var(--secondary-light);
}

.faq-accordion-section .accordion-body p {
  margin-bottom: var(--spacing-md);
}

/* Estilos para botões do accordion */
.faq-accordion-section .btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: var(--font-semibold);
}

.faq-accordion-section .btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--text-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.faq-accordion-section .btn-outline-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Nota de rodapé para planos sob medida */
.plan-features-note {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 123, 255, 0.1) 100%);
  border-left: 3px solid var(--primary-color);
  border-radius: var(--radius-sm);
  position: relative;
}

.plan-features-note::before {
  content: "ℹ️";
  margin-right: var(--spacing-xs);
  font-style: normal;
}

.plan-features-note::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.faq-accordion-section .accordion-body strong {
  color: var(--text-primary);
  font-weight: var(--font-semibold);
}

.faq-accordion-section .button-container {
  margin-top: var(--spacing-md);
}

.faq-accordion-section .btn {
  font-family: var(--font-primary);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  padding: var(--spacing-sm) var(--spacing-lg);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .faq-accordion-section {
    width: 100%;
    padding: var(--section-padding-mobile);
  }
  
  @media (max-width: 768px) {
    /*.faq-accordion-section {
      width: 109%;
    }*/
  }
  
  .faq-accordion-section .accordion-button {
    padding: var(--spacing-md);
    font-size: var(--text-base);
  }
  
  .faq-accordion-section .accordion-body {
    padding: var(--spacing-md);
    font-size: var(--text-sm);
  }
  
  .faq-image-placeholder {
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }
  
  .faq-image-placeholder img {
    height: 300px;
  }
  
  .faq-image-placeholder .carousel-indicators {
    bottom: -30px;
  }
}

/* Classes utilitárias para espaçamento */
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }

.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }

.p-xs { padding: var(--spacing-xs); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }
.p-2xl { padding: var(--spacing-2xl); }

/* Container otimizado */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Prevenir overflow horizontal em telas extra-grandes */
body, html {
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

/* Garantir que elementos não ultrapassem a largura da tela */
.row {
  margin-left: 0;
  margin-right: 0;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  max-width: 100%;
  overflow: hidden;
}

/* Seções de largura total */
.section-full-width {
  width: 100%;
  padding: var(--section-padding);
}

.section-full-width .container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Garantir que todas as seções principais tenham largura total */
section {
  width: 100%;
}

/* Reset para elementos que não devem ter largura total */
section.container,
section .container {
  width: auto;
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .section-full-width .container {
    padding: 0 var(--spacing-sm);
  }
}

/* Estilos para visualizador de PDF nos modais */
.pdf-viewer-container {
  width: 100%;
  height: 70vh; /* 70% da altura da viewport */
  max-height: 600px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  position: relative;
}

.pdf-viewer-container canvas {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto 10px auto !important;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Scrollbar customizada para o PDF viewer */
.pdf-viewer-container::-webkit-scrollbar {
  width: 8px;
}

.pdf-viewer-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.pdf-viewer-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.pdf-viewer-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .pdf-viewer-container {
    height: 60vh;
    max-height: 500px;
  }
}
