/* ============================================
   AUTOMOTIVON ON - Landing Page v2.0 Styles
   Premium Dark Theme with Neuromarketing Colors
   ============================================ */

:root {
  /* Colors — Neuromarketing Palette */
  --primary: #FC5304;
  --primary-hover: #FF7A33;
  --primary-glow: rgba(252, 83, 4, 0.25);
  --accent-green: #22C55E;
  --accent-gold: #FBBF24;
  --danger: #EF4444;

  /* Backgrounds — Deep blue instead of pure black */
  --bg-deep: #0B1120;
  --bg-section: #0F1629;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-white: #F8FAFC;
  --text-light: #E2E8F0;
  --text-muted: #94A3B8;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FC5304 0%, #FF7A33 100%);
  --gradient-cta: linear-gradient(135deg, #FC5304 0%, #FF7A33 50%, #FBBF24 100%);
  --gradient-card: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  --gradient-paola: linear-gradient(135deg,
      rgba(252, 83, 4, 0.08) 0%,
      rgba(251, 191, 36, 0.04) 100%);

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Effects */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%,
      rgba(252, 83, 4, 0.06),
      transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%,
      rgba(99, 102, 241, 0.04),
      transparent);
  pointer-events: none;
  z-index: -1;
}

.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

/* ============================================
   HEADER
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-white);
}

.btn-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.btn-header:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--primary-glow);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: all var(--transition-normal);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-cta);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--primary-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-light);
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252, 83, 4, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(252, 83, 4, 0.2);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
}

.text-white {
  color: var(--text-white);
}

.gradient-text {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--text-white);
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

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

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual - Chat Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.chat-mockup {
  width: 100%;
  max-width: 420px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.chat-info {
  display: flex;
  flex-direction: column;
}

.chat-name {
  font-weight: 600;
  color: var(--text-white);
}

.chat-status {
  font-size: 0.8rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-status i {
  font-size: 0.5rem;
}

.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.message p {
  margin-bottom: 8px;
}

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

.message-time {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.message.received {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
}

.message.sent {
  align-self: flex-end;
  background: rgba(252, 83, 4, 0.12);
  border: 1px solid rgba(252, 83, 4, 0.2);
  border-bottom-right-radius: 4px;
}

.message-continuation {
  font-size: 0.9rem;
}

/* Chat Carousel */
.chat-carousel {
  position: relative;
  overflow: hidden;
}

.chat-slide {
  display: none;
  animation: fadeInChatSlide 0.5s ease forwards;
}

.chat-slide.active {
  display: block;
}

@keyframes fadeInChatSlide {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.chat-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
}

.chat-carousel-dot {
  width: 8px;
  height: 8px;
  background: var(--border);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.chat-carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   STATISTICS CAROUSEL
   ============================================ */
.stats-carousel {
  padding: 80px 0;
  background: var(--bg-section);
}

.section-pretitle {
  text-align: center;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.carousel-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.carousel-track {
  position: relative;
  overflow: hidden;
}

.stat-card {
  width: 100%;
  padding: 40px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  display: none;
  opacity: 0;
}

.stat-card.active {
  display: block;
  animation: fadeInCard 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInCard {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(252, 83, 4, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  color: var(--primary);
}

.stat-highlight {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.stat-text strong {
  color: var(--text-white);
}

.stat-source {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.carousel-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dots .dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

.carousel-reflection {
  text-align: center;
  margin-top: 32px;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.carousel-reflection i {
  color: var(--accent-gold);
}

.carousel-reflection em {
  color: var(--text-light);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  display: inline-block;
}

/* ============================================
   COMPARISON (ANTES vs DEPOIS)
   ============================================ */
.comparison {
  padding: var(--section-padding) 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle strong {
  color: var(--text-light);
}

.comparison-table {
  display: flex;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.comparison-col {
  flex: 1;
  padding: 48px 40px;
}

.comparison-col.traditional {
  background: rgba(0, 0, 0, 0.2);
}

.comparison-col.modern {
  background: rgba(252, 83, 4, 0.03);
  border-left: 1px solid var(--border);
}

.comparison-header {
  text-align: center;
  margin-bottom: 32px;
}

.comparison-header i {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.comparison-col.traditional .comparison-header i {
  color: var(--text-muted);
}

.comparison-col.modern .comparison-header i {
  color: var(--primary);
}

.comparison-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
}

.comparison-col ul {
  list-style: none;
}

.comparison-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-col.traditional li i {
  color: var(--danger);
  margin-top: 4px;
  flex-shrink: 0;
}

.comparison-col.modern li i {
  color: var(--accent-green);
  margin-top: 4px;
  flex-shrink: 0;
}

.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  background: var(--bg-deep);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.steps-grid-bottom {
  margin-top: 24px;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 320px;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.6;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(252, 83, 4, 0.1);
  border: 1px solid rgba(252, 83, 4, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--primary);
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--border);
  font-size: 1.5rem;
}

.tech-badges {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-top: 60px;
}

.tech-badge {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-normal);
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.tech-badge:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

.tech-badge.expanded {
  border-color: rgba(252, 83, 4, 0.4);
  background: rgba(252, 83, 4, 0.04);
}

.tech-badge-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
}

.tech-badge-header i:first-child {
  color: var(--primary);
}

.badge-arrow {
  margin-left: auto;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.tech-badge.expanded .badge-arrow {
  transform: rotate(180deg);
}

.tech-badge-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 20px;
}

.tech-badge.expanded .tech-badge-detail {
  max-height: 250px;
  padding: 0 20px 16px;
}

.tech-badge-detail p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   MODULES SECTION (TUDO QUE SUA LOJA PRECISA)
   ============================================ */
.modules-section {
  padding: var(--section-padding) 0;
}

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

.module-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all var(--transition-normal);
}

.module-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.module-icon {
  width: 50px;
  height: 50px;
  background: rgba(252, 83, 4, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--primary);
}

.module-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}

.module-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   PAOLA SECTION (DESTAQUE)
   ============================================ */
.paola-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-paola);
  position: relative;
  overflow: hidden;
}

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

.paola-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.paola-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.12);
  color: var(--accent-gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 auto 24px;
  border: 1px solid rgba(251, 191, 36, 0.25);
  text-align: center;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.paola-subtitle {
  max-width: 650px;
}

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

.paola-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition-normal);
}

.paola-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(252, 83, 4, 0.3);
  transform: translateY(-4px);
}

.paola-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(252, 83, 4, 0.1);
  border: 1px solid rgba(252, 83, 4, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--primary);
}

.paola-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.paola-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.plan-card {
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.plan-card:hover {
  border-color: var(--border-light);
}

.plan-card.featured {
  background: linear-gradient(135deg, rgba(252, 83, 4, 0.08), var(--bg-card));
  border-color: var(--primary);
  transform: scale(1.02);
}

.plan-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 20px 40px var(--primary-glow);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 32px;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.plan-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.plan-price .currency {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.plan-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: var(--accent-green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.plan-features li.disabled {
  color: var(--text-muted);
  opacity: 0.6;
}

.plan-features li.disabled i {
  color: var(--text-muted);
}

.plan-features li.highlight {
  color: var(--accent-gold);
  font-weight: 600;
}

.plan-features li.highlight i {
  color: var(--accent-gold);
}

.btn-plan {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.btn-plan:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.plan-card.featured .btn-plan {
  background: var(--gradient-cta);
  border: none;
}

.plan-card.featured .btn-plan:hover {
  box-shadow: 0 8px 20px var(--primary-glow);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-padding) 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  font-family: inherit;
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

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

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

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  opacity: 1;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: var(--section-padding) 0;
  background:
    linear-gradient(135deg, rgba(252, 83, 4, 0.1), transparent),
    var(--bg-section);
}

.cta-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.cta-content strong {
  color: var(--text-white);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-logo {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-company h4,
.footer-links h4,
.footer-legal h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-company p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer-company p strong {
  color: var(--text-light);
}

.footer-company i {
  color: var(--primary);
  margin-right: 6px;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-signature {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 8px;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: gentlePulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes gentlePulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ============================================
   LEAD MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  bottom: 100px;
  right: 30px;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  background: transparent;
  display: none;
  z-index: 2000;
}

.modal-overlay.active {
  display: block;
}

.modal-content {
  width: 100%;
  max-width: 420px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--text-white);
  background: var(--bg-card-hover);
}

.modal-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.modal-chat-header .chat-avatar {
  background: #25d366;
}

.modal-chat-body {
  padding: 24px;
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  margin-bottom: 24px;
}

.chat-bubble p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.chat-bubble p:last-child {
  margin-bottom: 0;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input {
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-white);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

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

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: #25d366;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.btn-submit:hover {
  background: #1fad54;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.modal-success {
  padding: 48px 24px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: var(--accent-green);
}

.modal-success h3 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.modal-success p {
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

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

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

  .steps-grid,
  .steps-grid-bottom {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    padding: 16px 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  /* Mobile Menu */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 17, 32, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: var(--text-white);
  }

  .btn-header {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .stat-divider {
    display: none;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

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

  .comparison-table {
    flex-direction: column;
  }

  .comparison-vs {
    width: 100%;
    padding: 16px;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 100%;
    max-width: 400px;
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-4px);
  }

  .tech-badges {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links,
  .footer-legal {
    align-items: center;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  /* Mobile modal adjustments */
  .modal-overlay {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

  .modal-content {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
  }
}