#apresentacao .conecta-cards,
#apresentacao .conecta-resultados {
  display: grid;
  gap: 16px;
}

#apresentacao .conecta-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 14px 32px rgba(15, 53, 110, 0.12);
  border: 1px solid rgba(1, 98, 204, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

#apresentacao .conecta-card i {
  font-size: 1.4rem;
}

#apresentacao .conecta-card p {
  margin-bottom: 0;
}

#apresentacao .conecta-resultados h3 {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  #apresentacao .conecta-card {
    padding: 14px 16px;
    border-radius: 16px;
  }
}

#objetivo .objetivo-copy,
#tecnologia .tecnologia-copy {
  position: relative;
}

@media (max-width: 991.98px) {
  #objetivo .objetivo-copy,
  #tecnologia .tecnologia-copy {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(1, 98, 204, 0.12);
    border-radius: 20px;
    padding: 24px 22px;
    box-shadow: 0 18px 42px rgba(15, 53, 110, 0.12);
  }

  #objetivo .objetivo-copy .lead,
  #tecnologia .tecnologia-copy .lead {
    margin-bottom: 1.75rem;
  }

  #objetivo .objetivo-copy ul li,
  #tecnologia .tecnologia-copy ul li {
    background: rgba(1, 98, 204, 0.08);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(1, 98, 204, 0.1);
    box-shadow: 0 12px 28px rgba(12, 56, 110, 0.08);
    align-items: flex-start;
  }

  #objetivo .objetivo-copy ul li + li,
  #tecnologia .tecnologia-copy ul li + li {
    margin-top: 12px;
  }

  #objetivo .objetivo-copy ul li i,
  #tecnologia .tecnologia-copy ul li i {
    font-size: 1.2rem;
  }

  #objetivo .objetivo-panel-card,
  #tecnologia .tecnologia-panel-card {
    padding: 22px 20px;
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(15, 53, 110, 0.12);
    margin-top: 24px;
  }

  #objetivo .objetivo-panel-card ul li,
  #tecnologia .tecnologia-panel-card ul li {
    background: rgba(1, 98, 204, 0.06);
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(1, 98, 204, 0.08);
    align-items: flex-start;
  }

  #objetivo .objetivo-panel-card ul li + li,
  #tecnologia .tecnologia-panel-card ul li + li {
    margin-top: 10px;
  }
}

.app-preview {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.app-preview-img {
  display: block;
  width: min(480px, 100%);
  height: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimizeQuality;
}

@media (max-width: 768px) {
  .app-preview {
    display: none !important;
  }
}

/* Design System Moderno - DEEDO */
:root {
  /* Cores Primárias - Baseadas em #0162cc */
  --primary: #0162cc;
  --primary-hover: #014FA3;
  --primary-light: #E7F1FF;
  --primary-dark: #003c74;
  
  /* Cores Neutras */
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  
  /* Cores de Texto */
  --text-primary: #212529;
  --text-secondary: #6C757D;
  --text-muted: #ADB5BD;
  
  /* Backgrounds */
  --bg: var(--white);
  --bg-soft: var(--gray-50);
  --bg-subtle: var(--gray-100);
  
  /* Bordas */
  --border: var(--gray-200);
  --border-light: var(--gray-100);
  --border-dark: var(--gray-300);
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #0162cc 0%, #014FA3 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(1, 98, 204, 0.05) 0%, rgba(1, 98, 204, 0.02) 100%);
  
  /* Sombras Sutis e Progressivas */
  --shadow-xs: 0 1px 2px 0 rgba(1, 98, 204, 0.05);
  --shadow-sm: 0 2px 4px 0 rgba(1, 98, 204, 0.06);
  --shadow-md: 0 4px 8px 0 rgba(1, 98, 204, 0.08);
  --shadow-lg: 0 8px 16px 0 rgba(1, 98, 204, 0.1);
  --shadow-xl: 0 12px 24px 0 rgba(1, 98, 204, 0.12);
  
  /* Border Radius Suaves */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Espaçamento (base 4px) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  
  /* Transições */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Compatibilidade com código existente */
  --main-blue: var(--primary);
  --main-white: var(--white);
  --main-gray: var(--gray-50);
  --text-dark: var(--text-primary);
  --text-light: var(--text-secondary);
  --ink-900: var(--text-primary);
  --ink-700: var(--gray-700);
  --ink-500: var(--text-secondary);
  --ai-gradient: var(--gradient-primary);
  --ai-highlight: #3D8BFD;
  --ai-bg-light: var(--primary-light);
  --ai-bg-dark: var(--primary-dark);
  --ai-shadow: var(--shadow-lg);
  --cta-green: var(--primary);
  --cta-red: var(--primary-dark);
  --radius: var(--radius-lg);
  --shadow-sm: var(--shadow-sm);
  --shadow-md: var(--shadow-md);
}

html {
  scroll-behavior: smooth;
}

/* Tipografia Moderna - Inter Otimizada */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiJ-Ek-_EeA.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.011em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;

  /* Footer sempre no fim */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}

.section-pad {
  padding: clamp(60px, 8vw, 80px) 0;
}
.section-pad-top {
  padding-top: clamp(80px, 12vw, 120px);
  padding-bottom: clamp(40px, 6vw, 60px);
}
.section-soft {
  background: var(--bg-soft);
}
.section-head {
  margin-bottom: clamp(40px, 6vw, 60px);
}

/* Responsividade Mobile-First - Breakpoints Melhorados */
/* Mobile Small (até 480px) */
@media (max-width: 480px) {
  .section-pad {
    padding: var(--space-10) 0;
  }
  
  .section-pad-top {
    padding-top: var(--space-12);
    padding-bottom: var(--space-6);
  }
  
  .section-head {
    margin-bottom: var(--space-6);
  }
  
  .hero {
    min-height: 70vh;
    padding: var(--space-16) 0 var(--space-10);
  }
  
  .hero-copy {
    padding: var(--space-5);
  }
  
  .card {
    padding: var(--space-4);
  }
  
  .btn-lg {
    padding: var(--space-3) var(--space-6);
    font-size: 1rem;
  }
}

/* Mobile (até 576px) */
@media (max-width: 576px) {
  .section-pad {
    padding: var(--space-10) 0;
  }
  
  .section-pad-top {
    padding-top: var(--space-12);
    padding-bottom: var(--space-6);
  }
  
  .section-head {
    margin-bottom: var(--space-6);
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-group .btn {
    width: 100%;
  }
}

/* Tablet (até 768px) */
@media (max-width: 768px) {
  .section-pad {
    padding: var(--space-12) 0;
  }
  
  .section-pad-top {
    padding-top: var(--space-16);
    padding-bottom: var(--space-8);
  }
  
  .section-head {
    margin-bottom: var(--space-8);
  }
  
  .hero {
    min-height: 75vh;
    padding: var(--space-16) 0 var(--space-12);
  }
  
  .hero-copy {
    padding: var(--space-6);
  }
  
  .navbar {
    padding: var(--space-2) 0;
  }
  
  .stats {
    gap: var(--space-6);
  }
}

/* Tablet Large (até 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .hero-copy {
    text-align: center;
    order: 1;
  }
  
  .hero-visual {
    order: 2;
  }
  
  #plataformas .card {
    margin-bottom: var(--space-4);
  }
}

/* Desktop (até 1200px) */
@media (max-width: 1200px) {
  .container-xl {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
}

/* Desktop Large (acima de 1200px) */
@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-8);
  }
  
  .section-pad {
    padding: var(--space-20) 0;
  }
}
.section-head .lead {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink-500);
}
/* Escala Tipográfica Moderna e Consistente */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.display-5, .display-6 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
}

.h1, h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-5);
}

.h2, h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.h3, h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-3);
}

.h4, h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.h5, h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-2);
}

.h6, h6 {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: var(--space-2);
}

/* Responsividade de títulos */
@media (max-width: 768px) {
  .h1, h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .h2, h2 {
    font-size: 1.75rem;
    line-height: 1.2;
}

.h3, h3 {
  font-size: 1.5rem;
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  .h1, h1 {
    font-size: 1.75rem;
  }
  
  .h2, h2 {
    font-size: 1.5rem;
  }
  
  .h3, h3 {
    font-size: 1.25rem;
  }
}


.h6, h6 {
  font-size: 1rem;
  font-weight: 600;
}

.lead {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
  width: 100%;
  max-width: 100%;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.text-primary {
  color: var(--main-blue) !important;
}

/* Compensa ancoragem com header fixo */
section,
[id] {
  scroll-margin-top: 96px;
}

.link-underline {
  color: var(--main-blue);
  text-decoration: underline;
}
.link-underline:hover {
  color: var(--cta-red);
}

/* Botões Modernos - Design Minimalista */
.btn {
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-6);
  transition: all var(--transition-base);
  border: 1px solid transparent;
  min-height: 44px; /* Acessibilidade - área clicável mínima */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  cursor: pointer;
  text-decoration: none;
}

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

.btn-cta {
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  transition: all var(--transition-base);
  border: none;
}

.btn-cta:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-cta:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

.btn-outline-primary {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: var(--radius-md);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  transition: all var(--transition-base);
}

.btn-outline-primary:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-primary:active:not(:disabled) {
  transform: translateY(0);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1.125rem;
  min-height: 52px;
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
  min-height: 36px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Respeitar prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn-cta,
  .btn-primary,
  .btn-outline-primary {
    transition: none;
  }
  
  .btn:hover:not(:disabled),
  .btn-cta:hover:not(:disabled),
  .btn-primary:hover:not(:disabled),
  .btn-outline-primary:hover:not(:disabled) {
    transform: none;
  }
}

/* Cards Modernos - Design Minimalista */
.card:not(.highlight-card) {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: var(--space-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card:not(.highlight-card):hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card:not(.highlight-card).h-100 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.highlight-card.h-100,
.card.highlight-card.h-100 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  flex: 1;
  padding: var(--space-6);
}

.card:not(.highlight-card) .card-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.card:not(.highlight-card) .card-text {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.card-footer {
  border-top: 1px solid var(--border);
  padding-top: var(--space-4);
  margin-top: auto;
}

/* Cards com hover state elegante */
.card-hover:not(.highlight-card) {
  cursor: pointer;
}

.card-hover:not(.highlight-card):hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

/* Cards sem borda (mais minimalista) */
.card-borderless:not(.highlight-card) {
  border: none;
  box-shadow: var(--shadow-sm);
}

.card-borderless:not(.highlight-card):hover {
  box-shadow: var(--shadow-md);
}

/* Respeitar prefers-reduced-motion - Desabilitar todas as animações */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .card,
  .card-hover,
  .btn,
  .btn-cta,
  .btn-primary,
  .btn-outline-primary,
  .feature-card,
  .testimonial,
  .entrega-card,
  .consult-card,
  .highlight-card,
  .highlight-stat,
  .highlight-pill,
  .icon-wrap,
  .stat {
    transition: none !important;
  }
  
  .card:hover,
  .card-hover:hover,
  .btn:hover:not(:disabled),
  .btn-cta:hover:not(:disabled),
  .btn-primary:hover:not(:disabled),
  .btn-outline-primary:hover:not(:disabled),
  .feature-card:hover,
  .entrega-card:hover,
  .consult-card:hover,
  .highlight-stat:hover,
  .highlight-pill:hover,
  .stat:hover {
    transform: none !important;
  }
  
  .testimonial {
    transform: none !important;
    opacity: 1 !important;
  }
  
  html {
    scroll-behavior: auto !important;
  }
}

/* Melhorias de Acessibilidade */
/* Contraste WCAG AA - Garantir contraste mínimo de 4.5:1 */
a, .nav-link, .btn {
  color: var(--primary);
}

a:hover, .nav-link:hover {
  color: var(--primary-hover);
}

/* Áreas clicáveis mínimas (44x44px) */
a, button, .btn, .nav-link, .navbar-toggler {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Estados de foco visíveis e acessíveis */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Skip link melhorado */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px;
}

/* Melhorar contraste de texto */
.text-secondary {
  color: var(--text-secondary);
}

/* Garantir contraste adequado em backgrounds */
.bg-primary-subtle {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* Links com melhor contraste */
.link-underline {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-underline:hover {
  color: var(--primary-hover);
  text-decoration-thickness: 2px;
}

/* Formulários acessíveis */
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(1, 98, 204, 0.25);
  outline: none;
}

/* Labels com contraste adequado */
label {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

/* Melhorar visibilidade de erros */
.invalid-feedback {
  color: #dc3545;
  font-weight: 500;
}

/* Accordion acessível */
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(1, 98, 204, 0.25);
  border-color: var(--primary);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.visually-hidden-focusable:active,
.visually-hidden-focusable:focus {
  position: static !important;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* Navbar Moderna - Design Clean com Backdrop Blur */
.navbar {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.navbar .brand-text {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar .nav-link {
  color: var(--text-secondary);
  position: relative;
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  min-height: 44px; /* Acessibilidade */
  display: flex;
  align-items: center;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--primary);
  background: var(--primary-light);
}

.navbar .nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.navbar .nav-link.active {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-light);
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: var(--space-1);
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  opacity: 1;
}

.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  min-height: 44px;
  min-width: 44px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px var(--primary);
  outline: none;
}

.mobile-platform-heading {
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
  padding: var(--space-2) var(--space-3);
}

.mobile-platform-menu {
  display: flex;
  flex-direction: column;
  margin-left: var(--space-3);
  padding-left: var(--space-3);
  border-left: 1px solid var(--border);
  gap: var(--space-1);
}

.mobile-platform-menu .nav-link {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-base);
  min-height: 44px;
}

.mobile-platform-menu .nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.mobile-platform-menu .nav-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

@media (min-width: 992px) {
  .mobile-platform-heading,
  .mobile-platform-menu {
    display: none !important;
  }
}

.hero {
  position: relative;
  background: radial-gradient(
    ellipse 1200px 500px at 85% -10%,
    var(--primary-light) 0%,
    transparent 60%
  ) no-repeat,
  linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: var(--space-20) 0 var(--space-16);
}

.hero.hero-full {
  padding-top: clamp(80px, 12vw, 120px);
  padding-bottom: clamp(40px, 6vw, 60px);
}

.hero.hero-full .container-xl {
  max-width: 100%;
  width: 100%;
  padding-left: clamp(24px, 6vw, 120px);
  padding-right: clamp(24px, 6vw, 120px);
}

.hero-grid {
  gap: clamp(24px, 4vw, 32px);
  display: grid;
  align-items: center;
  min-height: 80vh;
}

.hero.hero-full .hero-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.hero-copy {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 5vw, var(--space-10));
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/* Fallback para navegadores sem suporte a backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
  .hero-copy {
    background: rgba(255, 255, 255, 0.98);
  }
}

.hero.hero-full .hero-copy {
  width: 100%;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero.hero-full .hero-visual,
.hero.hero-full .hero-pattern {
  display: none;
}

/* Desktop - Hero copy ocupando 50% da tela */
@media (min-width: 1200px) {
  .hero-copy {
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
  }
}

/* Correções específicas para Safari Mobile - Hero */
@supports (-webkit-touch-callout: none) {
  .hero-copy {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .hero-grid {
    display: -webkit-grid;
    display: grid;
    -webkit-grid-template-columns: 1.05fr 0.95fr;
    grid-template-columns: 1.05fr 0.95fr;
  }
  
@media (max-width: 992px) {
  .hero-grid {
      -webkit-grid-template-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
}

.hero-copy .display-5 {
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
  line-height: 1.15;
}

.hero-copy .lead {
  margin-bottom: var(--space-6);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
  width: 100%;
  max-width: 100%;
}

.hero-copy .cta-group {
  margin-bottom: var(--space-6);
  gap: var(--space-3);
}

.hero-copy ul.list-unstyled {
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.hero-pro {
  position: relative;
  padding: clamp(120px, 14vw, 200px) 0 clamp(80px, 10vw, 140px);
  background: var(--bg-soft);
  overflow: hidden;
  color: var(--ink-900);
}

.hero-pro::before,
.hero-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-pro::before {
  background: -webkit-radial-gradient(circle at 10% 10%, rgba(59, 178, 255, 0.18), transparent 45%),
    -webkit-radial-gradient(circle at 90% 15%, rgba(1, 98, 204, 0.12), transparent 55%),
    -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(236, 245, 255, 0.88) 50%, rgba(218, 234, 255, 0.82) 100%);
  background: radial-gradient(circle at 10% 10%, rgba(59, 178, 255, 0.18), transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(1, 98, 204, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(236, 245, 255, 0.88) 50%, rgba(218, 234, 255, 0.82) 100%);
  z-index: 0;
}

.hero-pro::after {
  background-image: var(--hero-image, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 0;
  mix-blend-mode: multiply;
}

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

.hero-pro-grid {
  display: grid;
  gap: clamp(32px, 6vw, 64px);
  align-items: stretch;
}

.hero-pro-single .hero-pro-grid {
  display: block;
}

.hero-pro-single .hero-pro-copy {
  width: 100%;
  max-width: none;
  align-items: stretch;
  text-align: left;
}

.hero-pro-single .hero-pro-panel,
.hero-pro-single .hero-pro-cta,
.hero-pro-single .hero-pro-stats {
  width: 100%;
}

.hero-pro-single .hero-pro-cta {
  justify-content: flex-start;
}

.hero-pro-single .hero-pro-stats {
  margin-inline: 0;
}

.hero-pro-copy {
  background: rgba(255, 255, 255, 0.95);
  border-radius: clamp(24px, 5vw, 32px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(1, 98, 204, 0.08);
  box-shadow: 0 32px 65px rgba(15, 53, 110, 0.12);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 28px);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Fallback para navegadores sem suporte a backdrop-filter */
@supports not (backdrop-filter: blur(12px)) {
  .hero-pro-copy {
    background: rgba(255, 255, 255, 0.98);
  }
}

.hero-pro-panel {
  background: rgba(1, 98, 204, 0.06);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid rgba(1, 98, 204, 0.12);
  display: grid;
  gap: 12px;
  box-shadow: 0 18px 36px rgba(1, 98, 204, 0.12);
}

.hero-pro-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-pro-panel-header h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.hero-pro-panel-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pro-panel-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--main-blue);
}

.hero-pro-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-pro-panel-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(1, 98, 204, 0.1);
  box-shadow: 0 10px 22px rgba(1, 98, 204, 0.1);
  color: var(--ink-700);
}

.hero-pro-panel-list li i {
  color: var(--main-blue);
  font-size: 1.1rem;
  margin-top: 2px;
}

.hero-pro-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
}

.hero-pro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(1, 98, 204, 0.1);
  color: var(--main-blue);
  font-size: 1.35rem;
  box-shadow: 0 14px 28px rgba(1, 98, 204, 0.18);
}

.hero-pro-headline {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
}

.hero-pro-headline .display-5 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  letter-spacing: -0.035em;
  color: var(--ink-900);
}

.hero-pro-headline .lead {
  margin: 0;
  color: var(--ink-500);
  font-size: clamp(1.1rem, 2.3vw, 1.3rem);
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
}

.hero-pro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(1, 98, 204, 0.08);
  color: var(--main-blue);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(1, 98, 204, 0.12);
}

.hero-pro-badge i {
  font-size: 1rem;
}

.hero-pro-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-pro-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-pro-list i {
  color: var(--main-blue);
  font-size: 1.1rem;
  margin-top: 4px;
}

/* Ocultar hero-pro-list no mobile */
@media (max-width: 991.98px) {
  .hero-pro-list {
    display: none !important;
  }
}

.hero-pro-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pro-cta .btn-lg {
  min-width: 220px;
}

.hero-pro-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 28px);
  margin-top: auto;
}

.hero-pro-stat {
  background: rgba(1, 98, 204, 0.06);
  border-radius: 18px;
  padding: 16px 20px;
  min-width: 180px;
  border: 1px solid rgba(1, 98, 204, 0.1);
  box-shadow: 0 12px 24px rgba(1, 98, 204, 0.08);
}

.hero-pro-stat-number {
  display: block;
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--main-blue);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.hero-pro-stat-label {
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.4;
}

.hero-pro-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-pro-card {
  background: -webkit-linear-gradient(160deg, rgba(1, 98, 204, 0.08) 0%, rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.85) 100%);
  background: linear-gradient(160deg, rgba(1, 98, 204, 0.08) 0%, rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.85) 100%);
  border-radius: clamp(24px, 5vw, 32px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(1, 98, 204, 0.1);
  box-shadow: 0 24px 48px rgba(12, 58, 128, 0.18);
  width: min(520px, 100%);
  display: grid;
  gap: 18px;
}

.hero-pro-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-pro-card-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-pro-card-title span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  font-weight: 600;
}

.hero-pro-card-title h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--ink-900);
}

.hero-pro-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(1, 98, 204, 0.12);
  color: var(--main-blue);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-pro-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-pro-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  border: 1px solid rgba(1, 98, 204, 0.08);
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 8px 20px rgba(1, 98, 204, 0.08);
}

.hero-pro-card-list li i {
  color: var(--main-blue);
  font-size: 1.1rem;
  margin-top: 2px;
}

.hero-pro-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-500);
}

.hero-pro-card-footer i {
  color: var(--main-blue);
}

.hero-pro-panel-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-500);
}

.hero-pro-panel-footer i {
  color: var(--main-blue);
}

@media (min-width: 1200px) {
  .hero-pro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .hero-pro-copy {
    align-self: center;
  }
}

@media (max-width: 1199px) {
  .hero-pro-grid {
    grid-template-columns: 1fr;
  }

  .hero-pro-single .hero-pro-cta {
    justify-content: center;
  }

  .hero-pro-single .hero-pro-grid {
    grid-template-columns: 1fr;
  }

  .hero-pro-copy {
    text-align: center;
    align-items: center;
  }

  .hero-pro-meta {
    justify-content: center;
  }

  .hero-pro-headline .lead {
    margin-inline: auto;
  }

  .hero-pro-list li {
    justify-content: center;
  }

  .hero-pro-cta {
    justify-content: center;
  }

  .hero-pro-stat {
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .hero-pro {
    padding: 120px 0 72px;
  }

  .hero-pro-copy {
    padding: 28px 24px;
  }

  .hero-pro-card {
    padding: 28px 24px;
  }

  .hero-pro-stat {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .hero-pro {
    padding: 110px 0 60px;
  }

  .hero-pro-single .hero-pro-cta {
    align-items: stretch;
  }

  .hero-pro-copy {
    padding: 24px 20px;
    text-align: left;
    gap: 20px;
  }

  .hero-pro-meta {
    justify-content: flex-start;
  }

  .hero-pro-headline .lead {
    margin-inline: 0;
  }

  .hero-pro-list {
    gap: 10px;
  }

  .hero-pro-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-pro-cta .btn-lg {
    width: 100%;
  }

  .hero-pro-stats {
    gap: 12px;
  }

  .hero-pro-stat {
    flex: 1 1 100%;
    min-width: auto;
    padding: 14px 16px;
  }

  .hero-pro-card {
    padding: 24px 20px;
  }

  .hero-pro-card-list li {
    padding: 12px;
  }

  .hero-pro-card-head {
    align-items: flex-start;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-copy {
    text-align: center;
    order: 1;
  }
  
  .hero-visual {
    order: 2;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  
  .hero-copy {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 60vh;
  }
  
  .hero-copy {
    padding: 16px;
  }
}
.illustration-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.badge-soft {
  background: var(--bg-soft);
  color: var(--ink-700);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
}
.text-gradient {
  background: var(--ai-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  -webkit-mask-image: -webkit-radial-gradient(circle at 70% 20%, black 10%, transparent 60%);
  mask-image: -webkit-radial-gradient(circle at 70% 20%, black 10%, transparent 60%);
  mask-image: radial-gradient(circle at 70% 20%, black 10%, transparent 60%);
  background-image: -webkit-radial-gradient(
      1px 1px at 20px 20px,
      rgba(1, 98, 204, 0.25) 1px,
      transparent 0
    ),
    -webkit-radial-gradient(
      1px 1px at 60px 40px,
      rgba(59, 178, 255, 0.25) 1px,
      transparent 0
    );
  background-image: radial-gradient(
      1px 1px at 20px 20px,
      rgba(1, 98, 204, 0.25) 1px,
      transparent 0
    ),
    radial-gradient(
      1px 1px at 60px 40px,
      rgba(59, 178, 255, 0.25) 1px,
      transparent 0
    );
  background-size: 80px 80px;
}

/* Trustbar Compacta e Moderna */
.trustbar {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: -webkit-linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.trustbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ai-gradient);
  opacity: 0.3;
}

.trustbar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.trustbar-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trustbar-label i {
  font-size: 1rem;
  color: var(--main-blue);
}

.trustbar-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 800px;
}

.city-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(1, 98, 204, 0.1);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-700);
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  display: inline-block;
  -webkit-appearance: none;
  appearance: none;
}

/* Fallback para navegadores sem suporte a backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
  .city-item {
    background: rgba(255, 255, 255, 0.95);
  }
}

.city-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(1, 98, 204, 0.2);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(1, 98, 204, 0.1);
}

/* Correções específicas para Safari Mobile - Trustbar */
@supports (-webkit-touch-callout: none) {
  .trustbar-cities {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  
  .city-item {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Correções para cards no Safari Mobile */
  .resource-card,
  .feature-card,
  .plan-card {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .resource-card:hover,
  .feature-card:hover,
  .plan-card:hover {
    -webkit-transform: translateY(-4px) translateZ(0);
    transform: translateY(-4px) translateZ(0);
  }
  
  /* Correções para botões no Safari Mobile */
  .btn {
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .btn:hover {
    -webkit-transform: translateY(-2px) translateZ(0);
    transform: translateY(-2px) translateZ(0);
  }
}

/* Responsividade da Trustbar */
@media (max-width: 992px) {
  .trustbar {
    padding: 16px 0;
  }
  .trustbar-content {
    gap: 12px;
  }
  .city-item {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .trustbar {
    padding: 10px 0;
  }
  .trustbar-content {
    gap: 6px;
  }
  .trustbar-label {
    font-size: 0.9rem;
  }
  .trustbar-cities {
    gap: 4px;
  }
  .city-item {
    padding: 5px 10px;
    font-size: 0.85rem;
    border-radius: 15px;
  }
}

@media (max-width: 576px) {
  .trustbar {
    padding: 8px 0;
  }
  .trustbar-content {
    gap: 4px;
  }
  .trustbar-label {
    font-size: 0.85rem;
  }
  .trustbar-cities {
    gap: 3px;
  }
  .city-item {
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .trustbar {
    padding: 6px 0;
  }
  .trustbar-content {
    gap: 3px;
  }
  .trustbar-label {
    font-size: 0.8rem;
  }
  .trustbar-cities {
    gap: 2px;
  }
  .city-item {
    padding: 4px 6px;
    font-size: 0.75rem;
    border-radius: 10px;
  }
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-base);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.feature-card p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}
.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  transition: all var(--transition-base);
}
.feature-card:hover .icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.feature-card:hover .icon-wrap .text-gradient {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff !important;
}
.feature-card .chip {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--ai-gradient);
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.ai-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: -webkit-linear-gradient(135deg, #f8fbff 75%, var(--bg-soft) 100%);
  background: linear-gradient(135deg, #f8fbff 75%, var(--bg-soft) 100%);
  box-shadow: var(--shadow-sm);
}
.ai-card .highlight {
  background: #fff;
  border-left: 6px solid var(--ai-highlight);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-dark);
}
.ai-visual {
  position: relative;
}
.ai-screen {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.ai-toolbar {
  display: flex;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  background: #f9fbfe;
}
.ai-toolbar .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.ai-content {
  padding: 16px;
}
.skeleton {
  background: -webkit-linear-gradient(90deg, #f1f5fa 25%, #e9f1fa 37%, #f1f5fa 63%);
  background: linear-gradient(90deg, #f1f5fa 25%, #e9f1fa 37%, #f1f5fa 63%);
  border-radius: 10px;
  -webkit-animation: shimmer 1.2s infinite;
  animation: shimmer 1.2s infinite;
  background-size: 400px 100%;
}
.skeleton.title {
  height: 18px;
  width: 60%;
  margin-bottom: 10px;
}
.skeleton.line {
  height: 12px;
  width: 88%;
  margin-bottom: 8px;
}
.skeleton.card {
  height: 68px;
  width: 100%;
  margin: 10px 0;
  border-radius: 12px;
}
.skeleton.w-75 {
  width: 75%;
}
.skeleton.w-50 {
  width: 50%;
}
@-webkit-keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
.floating-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--ai-gradient);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
  -webkit-transform: translate(-10px, -10px);
  transform: translate(-10px, -10px);
}

/* DEMOS (vídeos) */
.device-frame {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  cursor: pointer;
}
.device-frame:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: var(--ai-shadow);
  border-color: #cfe3f8;
}
.device-toolbar {
  display: flex;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.device-toolbar .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.demo-media {
  width: 100%;
  display: block;
  background: #000;
}
.demo-caption {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--ink-700);
  font-weight: 600;
}
.demo-card:focus-visible {
  outline: 3px solid #9bd1ff;
  outline-offset: 2px;
}

.resource-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  padding: clamp(20px, 3vw, 24px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ai-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.resource-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cfe3f8;
}

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

.resource-card h3 {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink-900);
  line-height: 1.3;
}

.resource-card p {
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.resource-card i {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  color: var(--main-blue);
  margin-bottom: 16px;
  display: inline-block;
  transition: all 0.3s ease;
}

.resource-card:hover i {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  color: var(--ai-highlight);
}

/* Badge para cards "Em breve" */
.badge-soft {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(1, 98, 204, 0.1);
  color: var(--main-blue);
  border: 1px solid rgba(1, 98, 204, 0.2);
  border-radius: 12px;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

/* Botões padronizados e melhorados */
.btn {
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--ai-gradient);
  border: none;
  color: white;
  box-shadow: 0 4px 16px rgba(1, 98, 204, 0.2);
}

.btn-primary:hover {
  background: -webkit-linear-gradient(92deg, #0056b3 60%, #0d7ac7 100%);
  background: linear-gradient(92deg, #0056b3 60%, #0d7ac7 100%);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 98, 204, 0.3);
  color: white;
}

.btn-cta {
  background: var(--ai-gradient);
  border: none;
  color: white;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(1, 98, 204, 0.2);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover {
  background: -webkit-linear-gradient(92deg, #0056b3 60%, #0d7ac7 100%);
  background: linear-gradient(92deg, #0056b3 60%, #0d7ac7 100%);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(1, 98, 204, 0.3);
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Efeito de shimmer nos botões */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Badges padronizados */
.badge {
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 8px;
}

.badge-soft {
  background: var(--bg-soft);
  color: var(--ink-700);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
}

.bg-primary-subtle {
  background: rgba(1, 98, 204, 0.1) !important;
  color: var(--main-blue) !important;
  border: 1px solid rgba(1, 98, 204, 0.2) !important;
}

.text-gradient {
  background: var(--ai-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.letter-spacing-1 {
  letter-spacing: 0.05em;
}

/* Melhorias nos planos */
.plan-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: -webkit-linear-gradient(135deg, #f8fbff 75%, var(--bg-soft) 100%);
  background: linear-gradient(135deg, #f8fbff 75%, var(--bg-soft) 100%);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ai-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.plan-card:hover::before {
  opacity: 1;
}
.plan-card:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: #cfe3f8;
}
.plan-card.plan-featured {
  border-color: #cfe3f8;
  background: -webkit-linear-gradient(135deg, #f0f8ff 75%, #e8f4fd 100%);
  background: linear-gradient(135deg, #f0f8ff 75%, #e8f4fd 100%);
}
.plan-card.plan-featured::before {
  opacity: 1;
}
.plan-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-top: 6px;
}
.price .currency {
  color: var(--main-blue);
  font-weight: 700;
}
.price .value {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--main-blue);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.price .cents {
  color: var(--main-blue);
  font-weight: 700;
}
.price.alt {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--main-blue);
}
.price-sub {
  color: var(--ink-500);
  margin-bottom: 6px;
}
.plan-list {
  list-style: none;
  margin: 8px 0 12px 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.plan-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--ink-700);
}
.plan-list i {
  color: var(--ai-highlight);
}
.disclaimer {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin: 8px 0 0;
}

/* Depoimentos Modernos */
.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transform: translateY(12px);
  opacity: 0;
  transition: all var(--transition-slow);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  opacity: 0.3;
}

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

.testimonial p {
  font-style: italic;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
  padding-left: var(--space-2);
}

.testimonial footer {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
  padding-left: var(--space-2);
}

/* Estatísticas Modernas */
.stats {
  display: flex;
  justify-content: center;
  gap: clamp(var(--space-8), 5vw, var(--space-12));
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.stat {
  text-align: center;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  min-width: 120px;
  transition: all var(--transition-base);
}

.stat:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.stat .number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
  display: block;
  margin-bottom: var(--space-1);
}

.stat .label {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Botões de Controle do Carrossel de Depoimentos - Sobrescrever Bootstrap */
#depoimentosCarousel .carousel-control-prev,
#depoimentosCarousel .carousel-control-next {
  position: absolute !important;
  width: 50px !important;
  height: 50px !important;
  background: var(--primary) !important;
  border-radius: var(--radius-full) !important;
  top: 50% !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  transform: translateY(-50%) !important;
  opacity: 0.9 !important;
  transition: all var(--transition-base) !important;
  border: 2px solid var(--white) !important;
  box-shadow: var(--shadow-md) !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

#depoimentosCarousel .carousel-control-prev {
  left: -25px !important;
  right: auto !important;
}

#depoimentosCarousel .carousel-control-next {
  right: -25px !important;
  left: auto !important;
}

#depoimentosCarousel .carousel-control-prev:hover,
#depoimentosCarousel .carousel-control-next:hover {
  opacity: 1 !important;
  background: var(--primary-dark) !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: var(--shadow-lg) !important;
}

#depoimentosCarousel .carousel-control-prev:focus,
#depoimentosCarousel .carousel-control-next:focus {
  opacity: 1 !important;
  background: var(--primary-dark) !important;
}

#depoimentosCarousel .carousel-control-prev-icon,
#depoimentosCarousel .carousel-control-next-icon {
  width: 20px !important;
  height: 20px !important;
  filter: brightness(0) invert(1) !important;
  background-size: 20px 20px !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  #depoimentosCarousel .carousel-control-prev,
  #depoimentosCarousel .carousel-control-next {
    width: 40px !important;
    height: 40px !important;
  }
  
  #depoimentosCarousel .carousel-control-prev {
    left: 10px !important;
  }
  
  #depoimentosCarousel .carousel-control-next {
    right: 10px !important;
  }
  
  #depoimentosCarousel .carousel-control-prev-icon,
  #depoimentosCarousel .carousel-control-next-icon {
    width: 16px !important;
    height: 16px !important;
    background-size: 16px 16px !important;
  }
}

/* CTA Final Moderno */
.cta-final {
  position: relative;
  background: -webkit-linear-gradient(135deg, #0162cc 0%, #1785ce 50%, #3bb2ff 100%);
  background: linear-gradient(135deg, #0162cc 0%, #1785ce 50%, #3bb2ff 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Botões dentro da seção cta-final - Visibilidade Corrigida */
.cta-final .btn-outline-light {
  background: transparent !important;
  color: var(--white) !important;
  border: 2px solid var(--white) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.cta-final .btn-outline-light:hover,
.cta-final .btn-outline-light:focus {
  background: var(--white) !important;
  color: var(--primary) !important;
  border-color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.cta-final .btn-outline-light:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.cta-final .btn-primary {
  background: var(--white) !important;
  color: var(--primary) !important;
  border: 2px solid var(--white) !important;
}

.cta-final .btn-primary:hover,
.cta-final .btn-primary:focus {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-dark) !important;
  border-color: var(--white) !important;
}

/* Background overlay moderno */
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    -webkit-radial-gradient(ellipse 800px 400px at 20% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
    -webkit-radial-gradient(ellipse 600px 300px at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    -webkit-radial-gradient(ellipse 400px 200px at 50% 10%, rgba(255,255,255,0.08) 0%, transparent 50%);
  background: 
    radial-gradient(ellipse 800px 400px at 20% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 600px 300px at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 400px 200px at 50% 10%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Padrão de pontos moderno */
.cta-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    -webkit-radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 1px, transparent 1px),
    -webkit-radial-gradient(circle at 75% 75%, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
  background-position: 0 0, 30px 30px;
  pointer-events: none;
  opacity: 0.6;
}

/* Elementos flutuantes decorativos */
.cta-floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: -webkit-radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
}

.cta-circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.cta-circle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.cta-circle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@-webkit-keyframes float {
  0%, 100% { -webkit-transform: translateY(0px) rotate(0deg); transform: translateY(0px) rotate(0deg); }
  50% { -webkit-transform: translateY(-20px) rotate(180deg); transform: translateY(-20px) rotate(180deg); }
}
@keyframes float {
  0%, 100% { -webkit-transform: translateY(0px) rotate(0deg); transform: translateY(0px) rotate(0deg); }
  50% { -webkit-transform: translateY(-20px) rotate(180deg); transform: translateY(-20px) rotate(180deg); }
}

/* Badge de destaque */
.cta-highlight-badge {
  background: rgba(255,255,255,0.95);
  color: var(--main-blue);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Fallback para navegadores sem suporte a backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
  .cta-highlight-badge {
    background: rgba(255,255,255,0.98);
  }
}

/* Tipografia da CTA */
.cta-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Container do botão CTA */
.cta-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
}

/* Botão principal da CTA */
.btn-cta-final {
  background: #fff;
  color: var(--main-blue);
  border: none;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 280px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}

.btn-cta-final:hover::before {
  left: 100%;
}

.btn-cta-final:hover {
  background: rgba(255,255,255,0.95);
  color: var(--main-blue);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-cta-final:active {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

/* Garantia */
.cta-guarantee {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  line-height: 1.4;
}

/* Benefícios */
.cta-benefits {
  margin-top: 2rem;
}

.cta-benefit-item {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 25px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Fallback para navegadores sem suporte a backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
  .cta-benefit-item {
    background: rgba(255,255,255,0.2);
  }
}

.cta-benefit-item:hover {
  background: rgba(255,255,255,0.15);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.cta-benefit-item i {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

/* Estatísticas */
.cta-stats {
  margin-top: 3rem;
}

.cta-stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Fallback para navegadores sem suporte a backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
  .cta-stat-item {
    background: rgba(255,255,255,0.18);
  }
}

.cta-stat-item:hover {
  background: rgba(255,255,255,0.12);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.cta-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
}

.cta-stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsividade da CTA */
@media (max-width: 992px) {
  .cta-title {
    font-size: 2.5rem;
  }
  .cta-description {
    font-size: 1.1rem;
  }
  .cta-circle-1,
  .cta-circle-2,
  .cta-circle-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .cta-final .cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cta-final .cta-group .btn {
    width: 100%;
    max-width: none;
    flex: 1 1 100%;
  }

  .cta-title {
    font-size: 2rem;
  }
  .cta-description {
    font-size: 1rem;
  }
  .btn-cta-final {
    padding: 16px 32px;
    font-size: 1rem;
    min-width: 0;
    width: 100%;
    max-width: none;
    border-radius: 20px;
  }
  .cta-button-container {
    width: 100%;
    padding: 0 20px;
  }
  .cta-guarantee {
    font-size: 0.85rem;
    padding: 0 10px;
  }
  .cta-benefit-item {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .cta-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.75rem;
  }
  .btn-cta-final {
    padding: 14px 28px;
    font-size: 0.95rem;
    min-width: 0;
    width: 100%;
    max-width: none;
    border-radius: 18px;
  }
  .cta-button-container {
    padding: 0 15px;
  }
  .cta-guarantee {
    font-size: 0.8rem;
    padding: 0 5px;
  }
  .cta-benefits .row {
    flex-direction: column;
    align-items: center;
  }
  .cta-benefit-item {
    width: fit-content;
  }
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 28px 0;
}
.site-footer .social-icons a {
  color: var(--main-blue);
  font-size: 1.2rem;
  margin: 0 6px;
}
.site-footer .social-icons a:hover {
  color: var(--ai-highlight);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(135deg, #25d366, #128c7e);
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 1.8rem;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  z-index: 1090;
}
.whatsapp-float:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  color: #fff;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--main-blue);
  color: #fff;
  padding: 12px 0;
  z-index: 1080;
  box-shadow: 0 -6px 18px rgba(1, 98, 204, 0.18);
}

/* Acessibilidade */
:focus-visible {
  outline: 3px solid #9bd1ff;
  outline-offset: 2px;
  border-radius: 8px;
}

/* Animações sutis de entrada ao rolar */
/* Animações de Reveal Suaves */
.reveal-init {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

/* Respeitar prefers-reduced-motion para reveal */
@media (prefers-reduced-motion: reduce) {
  .reveal-init,
  .reveal-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Seções com fade-in sutil (sem blur para melhor performance) */
section[data-section-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}

section[data-section-reveal].section-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reduzir movimento para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  section[data-section-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    filter: none !important;
  }
  
  section[data-section-reveal].section-revealed {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========================================
   SISTEMA DE RESPONSIVIDADE UNIVERSAL
   ======================================== */

/* Variáveis CSS para breakpoints */
:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  --breakpoint-xxxl: 1600px;
  
  /* Espaçamentos responsivos */
  --container-padding-xs: 8px;
  --container-padding-sm: 12px;
  --container-padding-md: 16px;
  --container-padding-lg: 20px;
  --container-padding-xl: 24px;
  --container-padding-xxl: 32px;
  
  /* Gaps responsivos */
  --gap-xs: 0.5rem;
  --gap-sm: 0.75rem;
  --gap-md: 1rem;
  --gap-lg: 1.5rem;
  --gap-xl: 2rem;
  --gap-xxl: 2.5rem;
}

/* ========================================
   CONTAINERS RESPONSIVOS
   ======================================== */

  .container-xl {
  padding-left: var(--container-padding-lg);
  padding-right: var(--container-padding-lg);
  transition: padding 0.3s ease;
}

/* Extra Large Desktops (1600px+) */
@media (min-width: 1600px) {
  .container-xl {
    padding-left: var(--container-padding-xxl);
    padding-right: var(--container-padding-xxl);
    max-width: 1600px;
    margin: 0 auto;
  }
}

/* Large Desktops (1400px - 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .container-xl {
    padding-left: var(--container-padding-xl);
    padding-right: var(--container-padding-xl);
  }
}

/* Desktops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .container-xl {
    padding-left: var(--container-padding-lg);
    padding-right: var(--container-padding-lg);
  }
}

/* Laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container-xl {
    padding-left: var(--container-padding-md);
    padding-right: var(--container-padding-md);
  }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container-xl {
    padding-left: var(--container-padding-sm);
    padding-right: var(--container-padding-sm);
  }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .container-xl {
    padding-left: var(--container-padding-xs);
    padding-right: var(--container-padding-xs);
  }
}

/* Mobile Small (0px - 575px) */
@media (max-width: 575px) {
  .container-xl {
    padding-left: var(--container-padding-xs);
    padding-right: var(--container-padding-xs);
  }
}

/* ========================================
   GRID SYSTEM RESPONSIVO
   ======================================== */

.row.g-4 {
  --bs-gutter-x: var(--gap-lg);
  --bs-gutter-y: var(--gap-lg);
  transition: gap 0.3s ease;
}

/* Ajustes de gap por breakpoint */
@media (max-width: 1199px) {
  .row.g-4 {
    --bs-gutter-x: var(--gap-md);
    --bs-gutter-y: var(--gap-md);
  }
}

@media (max-width: 767px) {
  .row.g-4 {
    --bs-gutter-x: var(--gap-sm);
    --bs-gutter-y: var(--gap-sm);
  }
}

@media (max-width: 575px) {
  .row.g-4 {
    --bs-gutter-x: var(--gap-xs);
    --bs-gutter-y: var(--gap-xs);
  }
}

/* ========================================
   HERO SECTION RESPONSIVO
   ======================================== */

.hero-grid {
  gap: var(--gap-xl);
  transition: gap 0.3s ease;
}

/* Desktop - Hero apenas na esquerda (50% da tela) */
@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
    justify-items: start;
  }
  
  .hero-copy {
    grid-column: 1;
    text-align: left;
    max-width: 100%;
    width: 100%;
    justify-self: start;
  }
  
  .hero-visual {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

/* Laptop e Tablet - Hero centralizado */
@media (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }
  
  .hero-copy {
    text-align: center;
    grid-column: 1;
  }
  
  .hero-visual {
    grid-column: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .hero-grid {
    gap: var(--gap-md);
    min-height: auto !important;
  }
  
  .hero.section-pad-top .container-xl {
    min-height: auto !important;
  }

  .hero-copy {
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(15, 53, 110, 0.12);
    border: 1px solid rgba(1, 98, 204, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

@media (max-width: 575px) {
  .hero-grid {
    gap: var(--gap-sm);
  }
  
  .hero-copy {
    padding: 18px !important;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    padding: 16px !important;
  }
}

/* ========================================
   TIPOGRAFIA RESPONSIVA
   ======================================== */

.display-5 {
  font-size: clamp(1.5rem, 4vw, 3rem) !important;
  line-height: 1.1;
  transition: font-size 0.3s ease;
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  transition: font-size 0.3s ease;
}

/* ========================================
   BOTÕES RESPONSIVOS
   ======================================== */

.btn-lg {
  padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
  font-size: clamp(1rem, 2vw, 1.1rem);
  transition: all 0.3s ease;
}

.btn-cta {
  padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
  font-size: clamp(0.95rem, 2vw, 1rem);
  transition: all 0.3s ease;
}

@media (max-width: 575px) {
  .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }
  
  .d-flex.gap-2 {
    flex-direction: column;
    gap: var(--gap-sm) !important;
  }
}

/* ========================================
   CARDS RESPONSIVOS
   ======================================== */

.col-lg-4,
.col-md-6,
.col-sm-6 {
  margin-bottom: var(--gap-md);
  transition: margin 0.3s ease;
}

@media (max-width: 1199px) {
  .col-lg-4 {
    margin-bottom: var(--gap-lg);
  }
}

@media (max-width: 991px) {
  .col-md-6 {
    margin-bottom: var(--gap-md);
  }
}

@media (max-width: 767px) {
  .col-sm-6 {
    margin-bottom: var(--gap-sm);
  }
}

/* ========================================
   OTIMIZAÇÕES ESPECÍFICAS POR NAVEGADOR
   ======================================== */

/* ========================================
   SAFARI (Mobile e Desktop)
   ======================================== */

/* Safari Mobile */
@supports (-webkit-touch-callout: none) {
  /* Correções de viewport */
  .container-xl {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Correções de scroll */
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Correções de flexbox */
  .d-flex {
    display: -webkit-flex !important;
    display: flex !important;
  }
  
  /* Correções de grid */
  .row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  /* Correções de backdrop-filter */
  .hero-copy,
  .city-item {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  
  /* Correções de object-fit */
  .video-hero-bg {
    -webkit-object-fit: cover;
    object-fit: cover;
  }
  
  /* Correções de appearance */
  .btn,
  .city-item {
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
  }
}

/* Safari Desktop */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-width: 768px) {
  /* Correções de font rendering */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Correções de transform */
  .resource-card:hover,
  .feature-card:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

/* ========================================
   CHROME (Mobile e Desktop)
   ======================================== */

/* Chrome Mobile */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 767px) {
  /* Otimizações de performance */
  .resource-card,
  .feature-card,
  .plan-card {
    will-change: transform;
  }
  
  /* Correções de touch */
  .btn {
    touch-action: manipulation;
  }
  
  /* Otimizações de scroll */
  .container-xl {
    scroll-behavior: smooth;
  }
}

/* Chrome Desktop */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-width: 768px) {
  /* Otimizações de hover */
  .resource-card:hover,
  .feature-card:hover {
    will-change: transform;
  }
  
  /* Correções de focus */
  .btn:focus-visible {
    outline: 2px solid var(--main-blue);
    outline-offset: 2px;
  }
}

/* ========================================
   FIREFOX (Mobile e Desktop)
   ======================================== */

/* Firefox Mobile */
@-moz-document url-prefix() {
  @media (max-width: 767px) {
    /* Correções de flexbox */
    .d-flex {
      display: -moz-box !important;
      display: flex !important;
    }
    
    /* Correções de grid */
    .row {
      display: -moz-box;
      display: flex;
      -moz-box-orient: horizontal;
      -moz-box-direction: normal;
      flex-direction: row;
      flex-wrap: wrap;
    }
    
    /* Correções de backdrop-filter */
    .hero-copy {
      background: rgba(255, 255, 255, 0.95);
    }
    
    .city-item {
      background: rgba(255, 255, 255, 0.9);
    }
  }
}

/* Firefox Desktop */
@-moz-document url-prefix() {
  @media (min-width: 768px) {
    /* Correções de font rendering */
    body {
      -moz-osx-font-smoothing: grayscale;
    }
    
    /* Correções de transform */
    .resource-card:hover,
    .feature-card:hover {
      -moz-transform: translateY(-4px);
      transform: translateY(-4px);
    }
  }
}

/* ========================================
   EDGE (Mobile e Desktop)
   ======================================== */

/* Edge Mobile */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  @media (max-width: 767px) {
    /* Correções de flexbox */
    .d-flex {
      display: -ms-flexbox !important;
      display: flex !important;
    }
    
    /* Correções de grid */
    .row {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  }
}

/* Edge Desktop */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  @media (min-width: 768px) {
    /* Correções de transform */
    .resource-card:hover,
    .feature-card:hover {
      -ms-transform: translateY(-4px);
      transform: translateY(-4px);
    }
  }
}

/* ========================================
   OTIMIZAÇÕES ESPECÍFICAS PARA DISPOSITIVOS
   ======================================== */

/* ========================================
   DISPOSITIVOS MÓVEIS
   ======================================== */

/* Mobile Small (0px - 575px) */
@media (max-width: 575px) {
  .resource-card,
  .feature-card,
  .plan-card {
    padding: 12px;
    margin-bottom: var(--gap-sm);
  }
  
  .resource-card h3,
  .feature-card h3 {
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .resource-card p,
  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .resource-card i,
  .feature-card .icon-wrap {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  /* Otimizações de touch */
  .btn {
    min-height: 44px;
    touch-action: manipulation;
  }
  
  /* Otimizações de scroll */
  .section-pad {
    padding: 30px 0;
  }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .resource-card,
  .feature-card,
  .plan-card {
    padding: 16px;
    margin-bottom: var(--gap-md);
  }
  
  .resource-card h3,
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .resource-card p,
  .feature-card p {
    font-size: 0.95rem;
  }
  
  .resource-card i,
  .feature-card .icon-wrap {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
}

/* ========================================
   TABLETS
   ======================================== */

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .resource-card,
  .feature-card,
  .plan-card {
    padding: 20px;
    margin-bottom: var(--gap-lg);
  }
  
  .resource-card h3,
  .feature-card h3 {
    font-size: 1.125rem;
  }
  
  .resource-card p,
  .feature-card p {
    font-size: 1rem;
  }
  
  .resource-card i,
  .feature-card .icon-wrap {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  /* Otimizações de hover para touch */
  .resource-card:hover,
  .feature-card:hover {
    transform: translateY(-2px);
  }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .resource-card,
  .feature-card,
  .plan-card {
    padding: 22px;
    margin-bottom: var(--gap-lg);
  }
  
  .resource-card h3,
  .feature-card h3 {
    font-size: 1.125rem;
  }
  
  .resource-card p,
  .feature-card p {
    font-size: 1rem;
  }
  
  .resource-card i,
  .feature-card .icon-wrap {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}

/* ========================================
   DESKTOPS
   ======================================== */

/* Desktop Small (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .resource-card,
  .feature-card,
  .plan-card {
    padding: 24px;
    margin-bottom: var(--gap-xl);
  }
  
  .resource-card h3,
  .feature-card h3 {
    font-size: 1.125rem;
  }
  
  .resource-card p,
  .feature-card p {
    font-size: 1rem;
  }
  
  .resource-card i,
  .feature-card .icon-wrap {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
  .resource-card,
  .feature-card,
  .plan-card {
    padding: 28px;
    margin-bottom: var(--gap-xxl);
  }
  
  .resource-card h3,
  .feature-card h3 {
    font-size: 1.25rem;
  }
  
  .resource-card p,
  .feature-card p {
    font-size: 1.1rem;
  }
  
  .resource-card i,
  .feature-card .icon-wrap {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/* ========================================
   OTIMIZAÇÕES ESPECÍFICAS PARA COMPONENTES
   ======================================== */

/* ========================================
   VÍDEO RESPONSIVO
   ======================================== */

.video-hero-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.video-hero-bg {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  object-fit: cover;
  border-radius: 24px;
  transition: all 0.3s ease;
}

/* Mobile Small */
@media (max-width: 575px) {
  .video-hero-container {
    border-radius: 16px;
    margin: 0 -8px;
    width: calc(100% + 16px);
  }
  
  .video-hero-bg {
    min-height: 50vh;
    border-radius: 16px;
  }
  
  /* Mobile app cards */
  .bg-primary-subtle {
    background-color: rgba(1, 98, 204, 0.08) !important;
  }
  
  /* Mobile app store buttons */
  .btn-outline-primary.btn-sm {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Mobile Large */
@media (min-width: 576px) and (max-width: 767px) {
  .video-hero-container {
    border-radius: 20px;
    margin: 0 -12px;
    width: calc(100% + 24px);
  }
  
  .video-hero-bg {
    min-height: 55vh;
    border-radius: 20px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .video-hero-container {
    border-radius: 22px;
  }
  
  .video-hero-bg {
    min-height: 60vh;
    border-radius: 22px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .video-hero-container {
    border-radius: 24px;
  }
  
  .video-hero-bg {
    min-height: 70vh;
    border-radius: 24px;
  }
}

/* ========================================
   TRUSTBAR RESPONSIVO
   ======================================== */

.trustbar {
  padding: 20px 0;
  transition: padding 0.3s ease;
}

.trustbar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: gap 0.3s ease;
}

.trustbar-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 800px;
  transition: gap 0.3s ease;
}

.city-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(1, 98, 204, 0.1);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-700);
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

/* Mobile Small */
@media (max-width: 575px) {
  .trustbar {
    padding: 8px 0;
  }
  
  .trustbar-content {
    gap: 4px;
  }
  
  .trustbar-cities {
    gap: 3px;
  }
  
  .city-item {
    padding: 4px 8px;
    font-size: 0.75rem;
    border-radius: 12px;
  }
}

/* Mobile Large */
@media (min-width: 576px) and (max-width: 767px) {
  .trustbar {
    padding: 12px 0;
  }
  
  .trustbar-content {
    gap: 6px;
  }
  
  .trustbar-cities {
    gap: 4px;
  }
  
  .city-item {
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 15px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .trustbar {
    padding: 16px 0;
  }
  
  .trustbar-content {
    gap: 12px;
  }
  
  .trustbar-cities {
    gap: 6px;
  }
  
  .city-item {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 18px;
  }
}

/* ========================================
   NAVEGAÇÃO RESPONSIVA
   ======================================== */

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  transition: font-size 0.3s ease;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Mobile */
/* Mobile Navigation Improvements */
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
  
  .navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 0.5rem;
  }
  
  .navbar-nav .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .navbar-nav .dropdown-item i {
    width: 20px;
    text-align: center;
  }
  
  .btn-cta {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* ========================================
   FOOTER RESPONSIVO
   ======================================== */

.site-footer {
  padding: 28px 0;
  transition: padding 0.3s ease;
}

/* Mobile */
@media (max-width: 767px) {
  .site-footer {
    padding: 20px 0;
    text-align: center;
  }
  
  .site-footer .row {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========================================
   MODAIS RESPONSIVOS
   ======================================== */

.modal-dialog {
  margin: 1rem;
  transition: margin 0.3s ease;
}

.modal-content {
  border-radius: 16px;
  transition: border-radius 0.3s ease;
}

/* Mobile */
@media (max-width: 575px) {
  .modal-dialog {
    margin: 0.5rem;
  }
  
  .modal-content {
    border-radius: 12px;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1rem;
  }
}

/* ========================================
   PERFORMANCE E OTIMIZAÇÕES
   ======================================== */

/* Otimizações de performance */
.resource-card,
.feature-card,
.plan-card {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Otimizações de scroll */
html {
  scroll-behavior: smooth;
}

/* Otimizações de touch */
.btn,
.city-item {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Otimizações de font rendering */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   ACESSIBILIDADE
   ======================================== */

/* Focus states */
.btn:focus-visible,
.nav-link:focus-visible,
.city-item:focus-visible {
  outline: 2px solid var(--main-blue);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .resource-card,
  .feature-card,
  .plan-card {
    border: 2px solid var(--ink-900);
  }
  
  .btn-primary {
    border: 2px solid var(--ink-900);
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .navbar,
  .trustbar,
  .whatsapp-float,
  .cookie-consent {
    display: none !important;
  }
  
  .container-xl {
    padding: 0 !important;
  }
  
  .resource-card,
  .feature-card,
  .plan-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
  }
  .section-pad-top {
    padding-top: 100px;
    padding-bottom: 30px;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero-copy {
    text-align: center;
  }
  .display-5 {
    font-size: 2.2rem;
  }
  .h1, h1 {
    font-size: 2rem;
  }
  .h2, h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 40px 0;
  }
  .section-pad-top {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .display-5 {
    font-size: 1.8rem;
  }
  .h1, h1 {
    font-size: 1.75rem;
  }
  .h2, h2 {
    font-size: 1.5rem;
  }
  .lead {
    font-size: 1.125rem;
  }
  .feature-card,
  .resource-card {
    padding: 20px;
  }
  .btn-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }
  .display-5 {
    font-size: 1.6rem;
  }
  .h1, h1 {
    font-size: 1.5rem;
  }
  .feature-card,
  .resource-card {
    padding: 16px;
  }
  .icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* App Store Badges - Posicionados no vídeo */
.video-app-stores {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: transparent;
  padding: 15px 20px;
  margin-top: 20px;
}

.app-stores {
  margin: 0;
}

.app-store-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
}

.app-store-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.app-store-badge {
  height: 40px;
  width: auto;
  max-width: 120px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
  background: transparent !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  object-fit: contain;
}

.app-store-link:hover .app-store-badge {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Mobile App Stores - Nova estrutura */
.mobile-app-stores {
  padding: 20px 0;
}

.mobile-app-container {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-app-container .app-stores {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0;
}

.mobile-app-container .app-store-badge {
  height: 40px;
  width: auto;
  max-width: 120px;
}

/* Responsividade dos badges no vídeo */
@media (max-width: 768px) {
  .video-app-stores.d-md-none {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px auto 0;
    max-width: 400px;
    width: 100%;
  }
  
  .video-app-stores.d-md-none .app-stores {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px !important;
    margin: 0;
  }
  
  .video-app-stores.d-md-none .app-store-badge {
    height: 40px;
    width: auto;
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .mobile-app-container {
    padding: 15px;
  }
  
  .mobile-app-container .app-stores {
    flex-direction: column;
    gap: 12px;
  }
  
  .mobile-app-container .app-store-badge {
    height: 35px;
    max-width: 140px;
  }
  
  .video-app-stores.d-md-none {
    padding: 15px;
    margin: 15px auto 0;
    max-width: 350px;
  }
  
  .video-app-stores.d-md-none .app-stores {
    flex-direction: column;
    gap: 12px !important;
  }
  
  .video-app-stores.d-md-none .app-store-badge {
    height: 35px;
    max-width: 140px;
  }
}

/* Seção de Acompanhamento dos Pais - Vídeo Hero */
.video-hero-container {
  position: relative;
  width: 100%;
  min-height: 80vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-hero-bg {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  object-fit: cover;
  border-radius: 24px;
  -webkit-object-fit: cover;
  -moz-object-fit: cover;
  -o-object-fit: cover;
}

/* Correções específicas para Safari Mobile */
@supports (-webkit-touch-callout: none) {
  .video-hero-bg {
    object-fit: cover;
    -webkit-object-fit: cover;
    width: 100% !important;
    height: auto !important;
    min-height: 60vh !important;
    max-height: 80vh;
  }
  
  .video-hero-container {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    display: block;
    overflow: hidden;
  }
  
  /* Força o vídeo a ocupar toda a largura no Safari */
  .video-hero-bg.d-md-none {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0 !important;
  }
}

/* Correções específicas para Android */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .video-hero-bg {
    object-fit: cover;
    -webkit-object-fit: cover;
  }
}

/* Correções adicionais para Safari Mobile */
@media screen and (max-width: 768px) and (-webkit-touch-callout: none) {
  .video-hero-bg {
    width: 100vw !important;
    height: 60vh !important;
    min-height: 60vh !important;
    object-fit: cover;
    -webkit-object-fit: cover;
    border-radius: 0 !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .video-hero-container {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    border-radius: 0 !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Força o vídeo mobile a ocupar toda a largura */
  .video-hero-bg.d-md-none {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
  }
}

/* Responsividade da seção de pais */
@media (max-width: 992px) {
  .video-hero-container {
    min-height: 70vh;
  }
  
  .video-hero-bg {
    min-height: 70vh;
  }
}

@media (max-width: 768px) {
  .video-hero-container {
    min-height: 60vh;
  }
  
  .video-hero-bg {
    min-height: 60vh;
  }
}

@media (max-width: 576px) {
  .video-hero-container {
    min-height: 50vh;
  }
  
  .video-hero-bg {
    min-height: 50vh;
  }
}

/* Seção de Ponto Melhorada */
.ponto-card-wrapper {
  position: relative;
}


.ponto-icon-wrapper {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(1, 98, 204, 0.2);
}

.ponto-icon-wrapper i {
  color: var(--main-blue) !important;
  z-index: 2;
  position: relative;
}

.ponto-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(1, 98, 204, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ponto-feature-icon:hover {
  background: rgba(1, 98, 204, 0.15);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.ponto-badges .badge {
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ponto-badges .badge:hover {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 98, 204, 0.2);
}

/* Responsividade da seção ponto */
@media (max-width: 768px) {
  
  .ponto-icon-wrapper {
    width: 45px;
    height: 45px;
  }
  
  .ponto-feature-icon {
    width: 35px;
    height: 35px;
  }
  
  .ponto-badges {
    flex-wrap: wrap;
    gap: 8px !important;
  }
  
  .ponto-badges .badge {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

@media (max-width: 576px) {
  
  .ponto-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .ponto-feature-icon {
    width: 32px;
    height: 32px;
  }
}

/* Imagens responsivas e em altíssima qualidade */
.hero-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Fornece formatos modernos (AVIF/WEBP) e variações 1x/2x para telas Retina */
  background-image: image-set(
    url("fundo_principal.avif") type("image/avif") 1x,
    url("fundo_principal@2x.avif") type("image/avif") 2x,
    url("fundo_principal.webp") type("image/webp") 1x,
    url("fundo_principal@2x.webp") type("image/webp") 2x,
    url("fundo_principal.png") type("image/png") 1x,
    url("fundo_principal@2x.png") type("image/png") 2x
  );
}

.cta-photo {
  opacity: 0.15;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: image-set(
    url("fundo6.avif") type("image/avif") 1x,
    url("fundo6@2x.avif") type("image/avif") 2x,
    url("fundo6.webp") type("image/webp") 1x,
    url("fundo6@2x.webp") type("image/webp") 2x,
    url("fundo6.jpg") type("image/jpeg") 1x,
    url("fundo6@2x.jpg") type("image/jpeg") 2x
  );
}

.plan-extra-trigger {
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}

.plan-extra-trigger:hover,
.plan-extra-trigger:focus {
  color: var(--main-blue);
  text-decoration: none;
}

.plan-extra-trigger:focus-visible {
  outline: 2px solid var(--main-blue);
  outline-offset: 2px;
}

.plan-extra-popover {
  max-width: 320px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.plan-extra-popover .popover-header {
  font-weight: 700;
}

.plan-extra-popover .popover-body {
  padding-bottom: 1rem;
}

.popover-extra-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.popover-extra-list li {
  margin: 0;
}

.popover-extra-list li strong {
  display: block;
}

.popover-extra-list .text-secondary {
  color: var(--ink-500) !important;
}

.modal-extra .modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: var(--shadow-md);
}

.modal-extra .modal-header {
  border-bottom: none;
}

.modal-extra .modal-title {
  font-weight: 700;
}

.modal-extra .modal-body {
  padding-top: 0;
}

.modal-extra-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.modal-extra-list li span {
  display: block;
  color: var(--ink-500);
}

.modal-extra .modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: var(--shadow-md);
}

.modal-extra .modal-header {
  border-bottom: none;
}

.modal-extra .modal-title {
  font-weight: 700;
}

.modal-extra .modal-body {
  padding-top: 0;
}

.modal-extra-grid {
  display: grid;
  gap: clamp(16px, 3vw, 20px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .modal-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.modal-extra-card {
  background: var(--bg-soft);
  border-radius: 18px;
  padding: clamp(16px, 3vw, 20px);
  border: 1px solid rgba(1, 98, 204, 0.08);
  box-shadow: 0 8px 24px rgba(1, 98, 204, 0.08);
  -webkit-transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.modal-extra-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(1, 98, 204, 0.14);
}

.modal-extra-card-highlight {
  background: -webkit-linear-gradient(135deg, rgba(1, 98, 204, 0.1), rgba(23, 133, 206, 0.15));
  background: linear-gradient(135deg, rgba(1, 98, 204, 0.1), rgba(23, 133, 206, 0.15));
  border-color: rgba(1, 98, 204, 0.25);
}

.modal-extra-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.modal-extra-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--main-blue);
}

.modal-extra-price span {
  font-size: 1.5rem;
}

.modal-extra-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-500);
}

.modal-extra-desc {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.modal-extra-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-extra-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  font-size: 1.6rem;
}

.modal-extra-icon i {
  line-height: 1;
}

.modal-extra-subtitle {
  font-size: 0.95rem;
  color: var(--ink-500);
}

.modal-extra {
  max-width: 720px;
  margin: 0 auto;
}

.modal-extra.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 2rem);
}

/* Página de Consultoria EduComp */
.bg-soft-gradient {
  background: -webkit-radial-gradient(circle at 20% 20%, rgba(1, 98, 204, 0.12), transparent 55%), -webkit-radial-gradient(circle at 80% 0%, rgba(23, 133, 206, 0.18), transparent 45%), -webkit-linear-gradient(140deg, #f4f8ff 0%, #ffffff 60%);
  background: radial-gradient(circle at 20% 20%, rgba(1, 98, 204, 0.12), transparent 55%), radial-gradient(circle at 80% 0%, rgba(23, 133, 206, 0.18), transparent 45%), linear-gradient(140deg, #f4f8ff 0%, #ffffff 60%);
}

.icon-wrap.icon-wrap-sm {
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.icon-wrap.icon-wrap-sm i {
  line-height: 1;
}

.consult-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.consult-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.consult-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.consult-card-footer {
  border-top: 1px solid rgba(1, 98, 204, 0.12);
  padding-top: 16px;
}

.consult-table th,
.consult-table td {
  padding: 20px 24px;
  vertical-align: top;
}

.consult-table tbody tr:nth-child(odd) {
  background-color: rgba(1, 98, 204, 0.04);
}

.consult-table tbody tr:hover {
  background-color: rgba(1, 98, 204, 0.08);
}

.entrega-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all var(--transition-base);
}

.entrega-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.entrega-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.beneficio-card {
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(1, 98, 204, 0.12);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.beneficio-card i {
  font-size: 1.75rem;
}

.beneficio-card:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .consult-table th,
  .consult-table td {
    padding: 16px;
  }

  .beneficio-card,
  .consult-card {
    border-radius: 18px;
  }
}

@media (max-width: 576px) {
  .consult-table thead {
    display: none;
  }

  .consult-table tr {
    display: block;
    padding: 16px;
    border-bottom: 1px solid rgba(1, 98, 204, 0.12);
  }

  .consult-table th {
    display: block;
    padding: 8px 0;
    font-size: 1.05rem;
  }

  .consult-table td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
  }

  .consult-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--ink-700);
  }
}

/* Highlight Card - DEEDO Gestão - Especificidade maior para sobrescrever .card */
.highlight-card,
.card.highlight-card {
  background: var(--gradient-primary) !important;
  color: var(--white) !important;
  border: none !important;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
}

.highlight-card *,
.card.highlight-card * {
  color: var(--white);
}

.highlight-card p,
.card.highlight-card p {
  color: rgba(255, 255, 255, 0.9);
}

.highlight-card .text-white-75,
.card.highlight-card .text-white-75 {
  color: rgba(255, 255, 255, 0.85) !important;
}

.highlight-card .icon-wrap,
.card.highlight-card .icon-wrap {
  background: rgba(255, 255, 255, 0.2) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.highlight-title,
.card.highlight-card .highlight-title,
.highlight-card h3,
.card.highlight-card h3 {
  color: var(--white) !important;
  text-shadow: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.highlight-card ul li,
.card.highlight-card ul li {
  color: rgba(255, 255, 255, 0.9) !important;
}

.highlight-card ul li i,
.card.highlight-card ul li i {
  color: var(--white) !important;
}

.highlight-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.highlight-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.highlight-pill i {
  font-size: 1rem;
}

.highlight-stat {
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: grid;
  gap: var(--space-1);
  color: var(--white);
  height: 100%;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.highlight-stat:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.highlight-stat .stat-number,
.card.highlight-card .stat-number {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white) !important;
}

.highlight-stat .stat-label,
.card.highlight-card .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

.highlight-stat i,
.card.highlight-card .highlight-stat i {
  color: var(--white) !important;
}

@media (max-width: 768px) {
  .highlight-stat {
    text-align: center;
  }
}

.platform-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.device-notebook {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 28px 32px 42px;
  border-radius: 28px;
  background: -webkit-linear-gradient(135deg, rgba(12, 28, 58, 0.92), rgba(1, 98, 204, 0.75));
  background: linear-gradient(135deg, rgba(12, 28, 58, 0.92), rgba(1, 98, 204, 0.75));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.device-screen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(4, 15, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.device-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.device-base {
  width: 70%;
  height: 14px;
  margin: 12px auto 0;
  border-radius: 0 0 30px 30px;
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(10, 24, 50, 0.85));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(10, 24, 50, 0.85));
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .device-notebook {
    padding: 24px 28px 36px;
  }
}

@media (max-width: 576px) {
  .device-notebook {
    padding: 18px 20px 30px;
    border-radius: 24px;
  }

  .device-base {
    height: 12px;
  }
}

.dashboard-preview-img {
  max-width: 980px;
  width: 100%;
  margin-inline: auto;
}

/* Cards de Plataformas - Design Minimalista */
#plataformas .card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-xs);
  background: var(--white);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

#plataformas .card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

#plataformas .card .icon-wrap {
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: var(--space-4);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

#plataformas .card:hover .icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

#plataformas .card h3 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

#plataformas .card p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-4);
  flex: 1;
}

#plataformas .card .btn {
  margin-top: auto;
  width: 100%;
}

/* Grupos padronizados de CTAs */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.cta-group .btn {
  flex-shrink: 0;
}

/* Utilitários mobile */
.mobile-text-center {
  text-align: center !important;
}

.mobile-text-start {
  text-align: left !important;
}

.mobile-order-first {
  order: -1 !important;
}

.mobile-order-last {
  order: 99 !important;
}

.mobile-w-100 {
  width: 100% !important;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 64px;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
  }

  .hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  #visao-geral .row.align-items-center {
    flex-direction: column-reverse;
    gap: 28px;
    text-align: center;
  }

  #visao-geral .dashboard-carousel-wrap {
    width: 100%;
  }

  #visao-geral .dashboard-preview-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(15, 53, 110, 0.12);
  }

  #visao-geral .cta-group {
    justify-content: center;
  }

  #visao-geral ul.list-unstyled {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
  }

  #visao-geral .list-unstyled i {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 98, 204, 0.12);
  }

  #visao-geral .list-unstyled li {
    padding: 8px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 24px rgba(15, 53, 110, 0.08);
  }

  #plataformas .highlight-card {
    padding: 20px 16px;
  }

  #plataformas .highlight-pill-group {
    justify-content: center;
  }

  #plataformas .highlight-pill {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 18px;
    gap: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--main-blue);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(15, 53, 110, 0.12);
  }

  #plataformas .highlight-pill i {
    color: var(--main-blue);
    font-size: 1.35rem;
  }

  #plataformas .highlight-pill-group {
    gap: 12px;
  }

  #plataformas .highlight-card .row.align-items-stretch {
    gap: 24px;
  }

  #plataformas .highlight-card ul.list-unstyled {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 16px;
    text-align: left;
    display: grid;
    gap: 12px;
  }

  #plataformas .highlight-card ul.list-unstyled li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  #plataformas .highlight-card ul.list-unstyled li i {
    font-size: 1.35rem;
    color: #fff;
    background: rgba(1, 98, 204, 0.4);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #plataformas .highlight-card ul.list-unstyled li span,
  #plataformas .highlight-card ul.list-unstyled li p {
    margin: 0;
  }

@media (max-width: 768px) {
  #plataformas .highlight-card ul.list-unstyled {
    display: none !important;
  }
}


  #plataformas .highlight-card .highlight-stat {
    text-align: left;
  }

  #plataformas .highlight-card .cta-group {
    justify-content: center;
  }

  #plataformas .highlight-card .cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 16px;
  }
}

/* Botões dentro do highlight-card - Visibilidade Corrigida */
.highlight-card .btn-light,
.card.highlight-card .btn-light {
  background: var(--white) !important;
  color: var(--primary) !important;
  border: 1px solid var(--white) !important;
  box-shadow: var(--shadow-sm);
}

.highlight-card .btn-light:hover,
.card.highlight-card .btn-light:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.highlight-card .btn-outline-light,
.card.highlight-card .btn-outline-light {
  background: transparent !important;
  color: var(--white) !important;
  border: 1.5px solid var(--white) !important;
  box-shadow: none;
}

.highlight-card .btn-outline-light:hover,
.card.highlight-card .btn-outline-light:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
  border-color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.highlight-card .btn:focus-visible,
.card.highlight-card .btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Botões dentro do highlight-card - Visibilidade Corrigida */
.highlight-card .btn-light,
.card.highlight-card .btn-light {
  background: var(--white) !important;
  color: var(--primary) !important;
  border: 1px solid var(--white) !important;
  box-shadow: var(--shadow-sm);
}

.highlight-card .btn-light:hover,
.card.highlight-card .btn-light:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.highlight-card .btn-outline-light,
.card.highlight-card .btn-outline-light {
  background: transparent !important;
  color: var(--white) !important;
  border: 1.5px solid var(--white) !important;
  box-shadow: none;
}

.highlight-card .btn-outline-light:hover,
.card.highlight-card .btn-outline-light:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
  border-color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.highlight-card .btn:focus-visible,
.card.highlight-card .btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;

#plataformas .plan-card .btn {
  width: 100%;
  padding: 14px 18px;
  font-size: 1.12rem;
  font-weight: 600;
  border-radius: 16px;
}

.card .btn-sm {
  width: 100%;
  padding: 14px 18px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 16px;
}

.card .btn-sm {
  width: 100%;
  padding: 14px 18px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 16px;
}

@media (max-width: 991.98px) {
  #plataformas .plan-card .mt-3 {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
  }

  #plataformas .plan-card .mt-3 p {
    display: none;
  }

  #plataformas .plan-card .mt-3 .plan-list.small {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #plataformas .plan-card .mt-3 .plan-list.small li {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  #plataformas .plan-card .mt-3 .plan-list.small li i {
    color: var(--main-blue);
  }

  #plataformas .plan-card .mt-3 .plan-list.small li a {
    color: var(--ink-700);
    font-weight: 600;
  }
}


  .hero-copy .display-5 {
    font-size: clamp(1.9rem, 4vw, 2.2rem);
  }

  .hero-copy .lead {
    font-size: 1.1rem;
  }

  .section-head .lead {
    font-size: 1.05rem;
  }

  .highlight-card,
  .ai-card {
    padding: 32px 28px;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    max-width: 140px;
  }

  .navbar .btn-cta {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 48px;
    min-height: auto;
    background-position: center;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy {
    padding: 20px;
    border-radius: 20px;
  }

  .hero-copy .display-5 {
    font-size: 1.6rem;
  }

  .hero-copy .lead {
    font-size: 1.05rem;
  }

  .hero-copy .small {
    justify-content: center;
    width: 100%;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group .btn {
    width: 100%;
  }

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

  .section-head .badge {
    margin-inline: auto;
  }

  .section-head .lead {
    font-size: 1rem;
  }

  .highlight-card,
  .feature-card,
  .resource-card,
  .plan-card,
  .entrega-card,
  .beneficio-card,
  .consult-card,
  .ai-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .plan-card .price {
    font-size: 1.9rem;
  }

  .plan-card .plan-list {
    gap: 6px;
  }

  .stats {
    flex-direction: column;
    gap: 18px;
  }

  .stat .number {
    font-size: 1.75rem;
  }

  .site-footer {
    padding: 36px 0;
  }

  .site-footer .social-icons {
    gap: 12px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

.dashboard-carousel-wrap {
  display: flex;
  justify-content: center;
}

.dashboard-carousel {
  width: 100%;
}

.dashboard-carousel .carousel-control-prev,
.dashboard-carousel .carousel-control-next {
  width: 8%;
}

.dashboard-carousel .carousel-control-prev-icon,
.dashboard-carousel .carousel-control-next-icon {
  filter: invert(1);
}

@media (max-width: 768px) {
  .dashboard-preview-img {
    max-width: 700px;
  }
}

@media (max-width: 576px) {
  .dashboard-preview-img {
    max-width: 520px;
  }
}

/* ========================================
   CORREÇÕES ESPECÍFICAS PARA macOS
   Chrome e Safari no macOS
   ======================================== */

/* Detecção de macOS usando user agent ou feature detection */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* Correções para Chrome no macOS */
  
  /* Forçar aceleração de hardware para transformações */
  .btn,
  .btn-cta,
  .btn-primary,
  .btn-outline-primary,
  .feature-card,
  .resource-card,
  .plan-card,
  .city-item,
  .whatsapp-float {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
  }
  
  /* Melhorar renderização de gradientes no macOS */
  .btn-primary,
  .btn-cta,
  .cta-final,
  .highlight-card {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  
  /* Otimizar sombras no macOS */
  .hero-copy,
  .hero-pro-copy,
  .feature-card,
  .resource-card,
  .plan-card {
    -webkit-box-shadow: var(--shadow-md);
    box-shadow: var(--shadow-md);
  }
  
  /* Melhorar performance de animações */
  .skeleton,
  .cta-circle {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: background-position, transform;
  }
}

/* Correções específicas para Safari no macOS */
@supports (-webkit-appearance: none) and (not (-ms-ime-align: auto)) {
  /* Safari específico */
  
  /* Forçar renderização correta de backdrop-filter */
  .hero-copy,
  .hero-pro-copy,
  .city-item,
  .cta-benefit-item,
  .cta-stat-item,
  .cta-highlight-badge {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Melhorar renderização de gradientes radiais */
  .hero,
  .hero-pro::before,
  .hero-pattern,
  .cta-bg-overlay,
  .cta-pattern-overlay {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Otimizar font rendering no macOS */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  /* Melhorar performance de transições */
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Forçar GPU acceleration para elementos animados */
  .btn:hover,
  .feature-card:hover,
  .resource-card:hover,
  .plan-card:hover,
  .city-item:hover,
  .whatsapp-float:hover {
    -webkit-transform: translateY(-2px) translateZ(0);
    transform: translateY(-2px) translateZ(0);
  }
}

/* Correções adicionais para Chrome no macOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  /* Chrome específico no macOS */
  
  /* Garantir que gradientes sejam renderizados corretamente */
  .btn-primary,
  .btn-cta,
  .cta-final,
  .highlight-card,
  .trustbar,
  .hero,
  .hero-pro::before {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  /* Melhorar renderização de box-shadow */
  .hero-copy,
  .feature-card,
  .resource-card,
  .plan-card {
    -webkit-box-shadow: var(--shadow-md);
    box-shadow: var(--shadow-md);
  }
  
  /* Otimizar animações */
  @-webkit-keyframes shimmer {
    0% {
      background-position: -200px 0;
    }
    100% {
      background-position: 200px 0;
    }
  }
  
  @-webkit-keyframes float {
    0%, 100% { 
      -webkit-transform: translateY(0px) rotate(0deg) translateZ(0);
      transform: translateY(0px) rotate(0deg) translateZ(0);
    }
    50% { 
      -webkit-transform: translateY(-20px) rotate(180deg) translateZ(0);
      transform: translateY(-20px) rotate(180deg) translateZ(0);
    }
  }
}

