/* ==========================================================================
   Ticketflix Design System & Landing Page Styles
   Brand Kit Compliance: #2563EB (Royal Blue), Electric Cyan Aurora Gradient, Outfit & Inter
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Cores de Marca (Brand Kit & Design Tokens - Royal Blue & Electric Cyan) */
  --color-primary: #3B82F6;
  /* Royal Blue/Blue 500 para brilhar no fundo escuro */
  --color-primary-hover: #60A5FA;
  /* Blue 400 - Hover no escuro */
  --color-primary-light: rgba(59, 130, 246, 0.15);
  /* Fundo translúcido */
  --color-primary-dark: #1E40AF;
  /* Royal Blue 800 */

  /* Gradiente Brand Aurora / Assinatura Electric Cyan Brilhante para máximo destaque no escuro */
  --gradient-aurora: linear-gradient(135deg, #38BDF8 0%, #60A5FA 45%, #22D3EE 100%);
  --gradient-aurora-soft: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(96, 165, 250, 0.2) 50%, rgba(34, 211, 238, 0.25) 100%);

  /* Cores de Superfície e Fundo (Premium Dark Gradient Aurora Mode) */
  --color-bg-primary: #0B1120;
  --color-bg-surface: #0F172A;
  --color-bg-surface-hover: #1E293B;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-focus: rgba(56, 189, 248, 0.4);

  /* Cores de Texto adequadas para Fundo Escuro */
  --color-text-main: #FFFFFF;
  /* Branco puro para títulos e máxima leitura */
  --color-text-muted: #CBD5E1;
  /* Slate 300 - cinza escovado bem claro para excelente destaque nas descrições e legendas */
  --color-text-light: #94A3B8;
  /* Slate 400 */

  /* Badges Semânticos (Adaptados para o escuro) */
  --color-badge-success-bg: rgba(21, 128, 61, 0.25);
  --color-badge-success-text: #4ADE80;
  --color-badge-warning-bg: rgba(161, 98, 7, 0.25);
  --color-badge-warning-text: #FACC15;
  --color-badge-error-bg: rgba(185, 28, 28, 0.25);
  --color-badge-error-text: #F87171;
  --color-badge-info-bg: rgba(37, 99, 235, 0.25);
  --color-badge-info-text: #60A5FA;

  /* Sombra e Efeitos (Glassmorphism & Elevado no escuro) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 35px rgba(37, 99, 235, 0.35);

  /* Raios de Borda */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Tipografia */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================================================
   Reset & Estilos Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(34, 211, 238, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(79, 70, 229, 0.16) 0%, transparent 55%);
  background-attachment: fixed;
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Utilitários de Layout & Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-bg-surface {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-bg-dark {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.85) 0%, rgba(15, 23, 42, 0.9) 60%, rgba(23, 37, 84, 0.85) 100%);
  color: #FFFFFF;
  border-top: 1px solid rgba(56, 189, 248, 0.25);
  border-bottom: 1px solid rgba(56, 189, 248, 0.25);
}

.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4,
.section-bg-dark .financial-point {
  color: #FFFFFF;
}

.section-bg-dark p,
.section-bg-dark .financial-point span {
  color: #CBD5E1;
}

.section-bg-dark .financial-box {
  background-color: rgba(30, 41, 59, 0.85);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 30px rgba(37, 99, 235, 0.3);
  color: #FFFFFF;
}

.section-bg-dark .financial-point i {
  color: #38BDF8;
}

.section-bg-tint {
  background: linear-gradient(180deg, rgba(19, 30, 53, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Componentes: Badges Semânticos
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.badge-primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-success {
  background-color: var(--color-badge-success-bg);
  color: var(--color-badge-success-text);
  border: 1px solid rgba(21, 128, 61, 0.2);
}

.badge-warning {
  background-color: var(--color-badge-warning-bg);
  color: var(--color-badge-warning-text);
}

.badge-aurora {
  background: var(--gradient-aurora-soft);
  color: var(--color-primary-hover);
  border: 1px solid rgba(34, 211, 238, 0.4);
  font-weight: 700;
}

/* ==========================================================================
   Componentes: Botões & CTAs (Alta Conversão)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

.btn-aurora {
  background: var(--gradient-aurora);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(34, 211, 238, 0.35);
}

.btn-aurora:hover {
  opacity: 0.95;
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: rgba(30, 41, 59, 0.8);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(51, 65, 85, 0.9);
  border-color: rgba(56, 189, 248, 0.5);
  color: #38BDF8;
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

/* ==========================================================================
   Componentes: Cards (Micro-animação estável sem layout shift)
   ========================================================================== */
.card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(37, 99, 235, 0.2);
  color: #FFFFFF;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.card:hover {
  box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.9), 0 0 40px rgba(56, 189, 248, 0.45);
  border-color: #38BDF8;
  background: linear-gradient(145deg, rgba(51, 65, 85, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  transform: translateY(-5px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Navbar Fixa (Glassmorphism Light Mode)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  background-color: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background-color: rgba(11, 17, 32, 0.95);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.navbar-logo img {
  height: 40px;
  width: 40px;
  border-radius: 10px;
  object-fit: contain;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.navbar-logo span {
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.navbar-link:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 8.5rem 0 5rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 20% 80%, rgba(34, 211, 238, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .text-aurora {
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.45));
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.trust-item i {
  color: var(--color-primary);
}

.hero-visual {
  position: relative;
}

.mockup-container {
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 35px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1rem;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background-color: #EF4444;
}

.dot-yellow {
  background-color: #F59E0B;
}

.dot-green {
  background-color: #10B981;
}

.mockup-badge-floating {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #FFFFFF;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.mockup-badge-floating .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--color-badge-success-bg);
  color: var(--color-badge-success-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Grid de Benefícios & Recursos
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-2-comparison {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.flex-checkout-box {
  max-width: 960px;
  margin: 2rem auto 0 auto;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.grid-3-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
}

/* ==========================================================================
   Seção Diferencial Financeiro
   ========================================================================== */
.financial-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.financial-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 2px solid #3B82F6;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 25px rgba(37, 99, 235, 0.25);
  color: #FFFFFF;
}

.financial-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.financial-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-text-main);
  font-size: 1.05rem;
}

.financial-point i {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Tabela Comparativa (Ticketflix vs Outras)
   ========================================================================== */
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  background: #0F172A;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  background-color: #1E293B;
  color: #FFFFFF;
}

.comparison-table .col-feature {
  width: 40%;
  font-weight: 600;
  color: #FFFFFF;
}

.comparison-table .col-ticketflix {
  width: 30%;
  background-color: rgba(37, 99, 235, 0.2);
  color: #38BDF8;
  font-weight: 700;
  text-align: center;
  border-left: 2px solid #3B82F6;
  border-right: 2px solid #3B82F6;
}

.comparison-table th.col-ticketflix {
  border-top: 2px solid #3B82F6;
  font-size: 1.2rem;
}

.comparison-table tr:last-child .col-ticketflix {
  border-bottom: 2px solid #3B82F6;
}

.comparison-table .col-others {
  width: 30%;
  color: #94A3B8;
  text-align: center;
}

/* ==========================================================================
   Como Funciona (Passo a Passo)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(30, 41, 59, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  color: #FFFFFF;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-aurora);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   Redução de Objeções (Acordeão FAQ)
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(30, 41, 59, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.faq-item.active {
  border-color: #38BDF8;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
  background: rgba(30, 41, 59, 0.9);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
}

.faq-question i {
  color: var(--color-text-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* ==========================================================================
   CTA Banners (Intermediário & Final)
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #1E3A8A 0%, #312E81 50%, #0F172A 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 45px rgba(37, 99, 235, 0.35);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: var(--gradient-aurora);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: #CBD5E1;
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Rodapé (Footer)
   ========================================================================== */
.footer {
  background-color: #060A13;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ==========================================================================
   Responsividade Mobile-First (Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {

  .hero-grid,
  .financial-highlight {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .grid-3,
  .grid-4,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  body,
  html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .container {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 6.5rem 0 3.5rem 0;
    overflow-x: hidden !important;
  }

  .hero-title {
    font-size: 2.35rem;
    word-break: break-word;
  }

  .section-header h2 {
    font-size: 1.85rem;
    word-break: break-word;
  }

  .grid-3,
  .grid-4,
  .steps-grid,
  .grid-2-comparison,
  .grid-3-stats {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .navbar-links,
  .navbar-cta {
    display: none !important;
  }

  .navbar-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
  }

  .hero-ctas {
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-ctas .btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .hero-trust {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .trust-item {
    flex-wrap: wrap !important;
    width: 100% !important;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .cta-banner h2 {
    font-size: 2rem;
    word-break: break-word;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Correção do Mockup e Badge flutuante que cortavam no celular */
  .mockup-container {
    padding: 0.75rem;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mockup-badge-floating {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    margin: 1.25rem 0 0 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    animation: none !important;
  }

  /* Correção da Caixa Flexível (PIX/Cartão) que esmagava no mobile */
  .flex-checkout-box {
    flex-direction: column !important;
    text-align: center !important;
    padding: 1.5rem 1.25rem !important;
    gap: 1rem !important;
    box-sizing: border-box !important;
  }

  /* Correção do scroll e padding da Tabela Comparativa */
  .table-container {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    box-sizing: border-box !important;
    border-radius: var(--radius-md) !important;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.85rem 0.65rem !important;
    font-size: 0.85rem !important;
  }
}

/* ==========================================================================
   Micro-animações de entrada (IntersectionObserver)
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}