/* ============================================================
   SAS – Sistema de Administración del Salón · styles.css
   ============================================================ */

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

:root {
  --blue:      #196dba;
  --blue-l:    #279ecc;
  --blue-d:    #0d3d6e;
  --blue-ll:   #6bbde0;
  --cyan:      #279ecc;
  --dark:      #080d1a;
  --dark-2:    #0f172a;
  --dark-3:    #1e293b;
  --gray-1:    #f8fafc;
  --gray-2:    #e2e8f0;
  --gray-3:    #94a3b8;
  --text:      #0f172a;
  --text-m:    #475569;
  --text-l:    #94a3b8;
  --white:     #ffffff;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 8px 32px rgba(25, 109, 186, 0.12);
  --shadow-lg: 0 20px 60px rgba(25, 109, 186, 0.18);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.slide-title, .section-title, .plan-name,
.logo-text, .rent-card-tag, .extra-body h3,
.rent-demo h3, .step-content h3, .business-content h3 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1200px, 100%);
  padding: 0 clamp(20px, 5vw, 60px);
  margin: 0 auto;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Baloo 2', cursive; line-height: 1.18; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 100px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 14px 34px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29, 78, 216, 0.5);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.945);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-d);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.28); }

.btn-ghost-white {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ── Section helpers ─────────────────────────────────────────── */
.section { padding: clamp(70px, 9vw, 120px) 0; }

.section-tag {
  display: inline-block;
  background: rgba(29, 78, 216, 0.07);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(29, 78, 216, 0.2);
  margin-bottom: 18px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-title { margin-bottom: 18px; }
.section-desc { color: var(--text-m); font-size: 1.05rem; line-height: 1.75; }

/* ── Reveal animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(8, 13, 26, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--blue-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  line-height: 1;
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 8px;
  align-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-mobile-action { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.carousel { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; z-index: 1; }

/* Image slides */
.slide-bg {
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }

/* Video slides */
.slide-video-el {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 13, 26, 0.92) 0%,
    rgba(29, 78, 216, 0.45) 50%,
    rgba(8, 13, 26, 0.80) 100%
  );
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: clamp(20px, 5vw, 60px);
  margin-left: clamp(20px, 8vw, 120px);
  margin-top: 60px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.slide-title {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.slide-desc {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.slide-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Animations for slide content */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide.active .animate-up { animation: slideUp 0.7s ease both; }
.slide.active .delay-1 { animation-delay: 0.15s; }
.slide.active .delay-2 { animation-delay: 0.3s; }
.slide.active .delay-3 { animation-delay: 0.45s; }

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.carousel-arrow:hover {
  background: rgba(29, 78, 216, 0.6);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--white);
  width: 28px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px; right: 60px;
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-arrow {
  width: 2px; height: 28px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, var(--dark-3) 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; text-align: center;
}
.stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-l), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-plus {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-l), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--gray-1); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(29, 78, 216, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-d), var(--blue-l));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29, 78, 216, 0.16);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--ic) 10%, transparent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--ic);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: color-mix(in srgb, var(--ic) 18%, transparent);
  transform: scale(1.08);
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 { margin-bottom: 12px; color: var(--text); }
.feature-card p  { color: var(--text-m); font-size: 0.93rem; margin-bottom: 20px; }

.feature-list { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  margin-left: 0;
  padding-left: 0;
}
.feature-list li {
  display: flex; 
  align-items: center; 
  gap: 12px;
  font-size: 0.9rem; 
  color: var(--text-m);
  font-weight: 500;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; 
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 2px;
}

/* ============================================================
   BUSINESSES
   ============================================================ */
.businesses { background: var(--white); }

.businesses-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.business-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-l);
  line-height: 1.6;
}

.keyword {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

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

.separator {
  opacity: 0.6;
  font-weight: 400;
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--dark); position: relative; overflow: hidden; }
.how-it-works::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.how-it-works .section-tag {
  background: rgba(255,255,255,0.07);
  color: var(--blue-ll);
  border-color: rgba(59, 130, 246, 0.25);
}
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-desc { color: rgba(255,255,255,0.55); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 20px 16px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-l), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 18px;
}
.step-content h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.step-content p  { color: rgba(255,255,255,0.5); font-size: 0.92rem; }

.step-connector {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--blue-d), var(--blue-l));
  opacity: 0.35;
  align-self: center;
  flex-shrink: 0;
  margin-top: -40px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--gray-1); }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}
.toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-m);
  display: flex; align-items: center; gap: 8px;
}
.toggle-badge {
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.toggle-switch { position: relative; width: 52px; height: 28px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: #cbd5e1;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  left: 4px; top: 4px;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
}
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 34px;
  border: 2px solid rgba(29, 78, 216, 0.1);
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--blue);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.pricing-badge-label {
  height: 28px;
  margin-bottom: 20px;
  display: flex; align-items: center;
}
.pricing-badge-label.popular {
  display: inline-flex;
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  width: fit-content;
}

.plan-name { font-size: 1.4rem; margin-bottom: 8px; }
.plan-desc { color: var(--text-m); font-size: 0.88rem; margin-bottom: 24px; line-height: 1.5; }

.plan-price {
  display: flex; align-items: flex-end; gap: 2px;
  margin-bottom: 28px;
}
.price-currency {
  font-size: 1.2rem; font-weight: 700;
  color: var(--blue);
  align-self: flex-start; margin-top: 8px;
}
.price-amount {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-period { color: var(--text-l); font-size: 0.9rem; padding-bottom: 6px; }

.plan-features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-m);
}
.plan-features li.included::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.plan-features li.excluded::before {
  content: '×';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.plan-features li.excluded { color: var(--text-l); }

.pricing-note {
  text-align: center;
  color: var(--text-l);
  font-size: 0.85rem;
  margin-top: 32px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); overflow: hidden; }

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}
.testimonial-card {
  min-width: 100%;
  padding: 48px clamp(20px, 6vw, 80px);
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial-stars { color: #f59e0b; font-size: 1.2rem; letter-spacing: 3px; }
.testimonial-text {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-author {
  display: flex; align-items: center; gap: 16px;
  justify-content: center;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-weight: 600; }
.testimonial-author span  { font-size: 0.85rem; color: var(--text-l); }

.testimonials-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 8px;
}
.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(29, 78, 216, 0.2);
  background: none;
  color: var(--blue);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.t-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.t-dots { display: flex; gap: 6px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-d) 40%, var(--dark-3) 100%);
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta-content h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 3rem); }
.cta-content p  { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 560px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 8px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--gray-1); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info .section-title { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.contact-info p { color: var(--text-m); margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(29, 78, 216, 0.07);
  border: 1px solid rgba(29, 78, 216, 0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item strong { display: block; font-weight: 600; margin-bottom: 2px; }
.contact-item span  { font-size: 0.9rem; color: var(--text-m); }

.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(29, 78, 216, 0.18);
  background: var(--white);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(29, 78, 216, 0.09);
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(29, 78, 216, 0.14);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-l); }

.form-success {
  display: flex; align-items: center; gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #065f46;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 8px;
}
.form-success svg { width: 20px; height: 20px; color: #10b981; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: 56px;
}

.logo-footer .logo-text { font-size: 1.4rem; }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin: 16px 0 22px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-brand .social-links { margin-top: 0; }
.footer-brand .social-btn {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
}
.footer-brand .social-btn:hover {
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
  border-color: transparent;
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--blue-ll); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2.5s infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============================================================
   RENT SECTION
   ============================================================ */
.rent-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.rent-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 2px solid rgba(29, 78, 216, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.rent-card-featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.rent-best-value {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 4px;
  width: fit-content;
}
.rent-best-value svg { width: 13px; height: 13px; fill: #f59e0b; stroke: #f59e0b; }

.rent-card-header { display: flex; flex-direction: column; gap: 8px; }
.rent-card-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.rent-card-header p { color: var(--text-m); font-size: 0.92rem; line-height: 1.6; }
.rent-card-header strong { color: var(--text); }

.rent-savings-badge {
  background: rgba(29, 78, 216, 0.06);
  border: 1px solid rgba(29, 78, 216, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.rent-savings-badge span { font-size: 0.82rem; color: var(--text-m); }
.rent-savings-badge strong {
  font-family: 'Baloo 2', cursive;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rent-features {
  display: flex; flex-direction: column; gap: 11px;
  padding: 0;
  list-style: none;
}
.rent-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-m);
}
.rent-features li.included::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-d), var(--blue-l));
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Demo column */
.rent-demo {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border: 2px solid rgba(255,255,255,0.06);
}
.demo-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(29, 78, 216, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-ll);
}
.demo-icon svg { width: 28px; height: 28px; }
.rent-demo h3 { color: var(--white); font-size: 1.15rem; }
.rent-demo p   { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }
.rent-demo strong { color: var(--white); }

.demo-list {
  display: flex; flex-direction: column; gap: 8px;
  text-align: left; width: 100%;
}
.demo-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
}
.demo-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.6);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.rent-demo .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.pricing .btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(29, 78, 216, 0.05);
}

.pricing .btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.rent-demo .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.demo-note {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.35) !important;
}

/* ============================================================
   EXTRAS SECTION
   ============================================================ */
.extras { background: var(--dark-2); }
.extras .section-tag { background: rgba(255,255,255,0.07); color: var(--blue-ll); border-color: rgba(59,130,246,0.25); }
.extras .section-title { color: var(--white); }
.extras .section-desc { color: rgba(255,255,255,0.55); }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}

.extra-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: var(--transition);
}
.extra-card:hover {
  background: rgba(29, 78, 216, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}
.extra-card-highlight {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(29, 78, 216, 0.07);
}

.extra-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(29, 78, 216, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-ll);
  transition: var(--transition);
}
.extra-card:hover .extra-icon {
  background: rgba(29, 78, 216, 0.25);
  border-color: rgba(59, 130, 246, 0.5);
}
.extra-icon svg { width: 24px; height: 24px; }

.extra-body { display: flex; flex-direction: column; gap: 6px; }
.extra-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-l);
  opacity: 0.8;
}
.extra-body h3 { color: var(--white); font-size: 1.05rem; margin: 0; }
.extra-body p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; margin: 0; }

.extra-badges {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 8px;
}
.extra-badges span {
  background: rgba(29, 78, 216, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--blue-ll);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.extras-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}
.extras-cta p { color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ── Logo imagen en nav ──────────────────────────────────── */
.logo-img-wrap {
  display: flex; align-items: center;
  padding: 2px 0;
}
.logo-img-wrap img {
  height: 52px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
}

/* ── Bloque de precio en rent-card ──────────────────────── */
.rent-price-block {
  display: flex; flex-direction: column; gap: 4px;
}
.rent-price {
  display: flex; align-items: baseline; gap: 4px;
}
.rent-currency {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.rent-amount {
  font-family: 'Baloo 2', cursive;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.rent-card-featured .rent-currency,
.rent-card-featured .rent-amount { color: var(--blue-d); }
.rent-period {
  font-size: 0.9rem;
  color: var(--text-m);
  font-weight: 600;
}
.rent-price-note {
  font-size: 0.78rem;
  color: var(--text-l);
}

/* ── Botón PayPal ────────────────────────────────────────── */
.btn-paypal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue-d);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-paypal:hover {
  background: #0d3d6e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,61,110,0.35);
}
.btn-paypal svg { flex-shrink: 0; }

/* ── Nota multi-sucursal ─────────────────────────────────── */
.multisucursal-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(25, 109, 186, 0.06);
  border: 1px solid rgba(25, 109, 186, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0 12px;
}
.multisucursal-note svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--blue);
  margin-top: 2px;
}
.multisucursal-note strong { color: var(--text); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.multisucursal-note p { color: var(--text-m); font-size: 0.88rem; margin: 0; line-height: 1.6; }

/* ── Badges con iconos ───────────────────────────────────── */
.extra-badges span {
  display: inline-flex; align-items: center; gap: 4px;
}

/* ============================================================
   BOTÓN "CONOCER MÁS" CON VIDEO
   ============================================================ */
.btn-video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 9px 18px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 100px;
  color: var(--blue-ll);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
}
.btn-video-link svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.6));
}
.btn-video-link:hover {
  background: rgba(59, 130, 246, 0.22);
  border-color: rgba(96, 165, 250, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

/* ============================================================
   MODAL DE VIDEO
   ============================================================ */
.video-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.open {
  pointer-events: all;
  opacity: 1;
}
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 13, 26, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.video-modal-box {
  position: relative; z-index: 2;
  width: min(900px, 94vw);
  background: var(--dark-2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-modal.open .video-modal-box { transform: scale(1) translateY(0); }
.video-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.video-modal-title {
  color: var(--white);
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.video-modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.video-modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.video-modal-close svg { width: 16px; height: 16px; }
.video-modal-player {
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-modal-player video {
  width: 100%; height: 100%;
  display: block;
  object-fit: contain;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .steps { justify-content: center; }
  .rent-layout { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: rgba(8, 13, 26, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; padding: 12px 28px; }
  .nav-mobile-action {
    margin-top: 20px;
    text-align: center;
  }
  .nav-mobile-action .btn {
    margin: 0 auto;
    max-width: 250px;
  }
  .nav-mobile-action {
    display: block;
  }
  .nav-actions { 
    display: none; 
  }
  .hamburger { display: flex; z-index: 1000; }

  .slide-content { margin-left: 70px; margin-right: 70px; }
  .slide-actions { flex-direction: column; }
  .slide-actions .btn { width: 100%; max-width: 300px; }

  .carousel-arrow { width: 42px; height: 42px; font-size: 1.4rem; }
  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }
  .scroll-hint { display: none; }

  .stat-divider { display: none; }
  .stats-bar .container { gap: 30px; }

  .features-grid { grid-template-columns: 1fr; }
  .businesses-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 2rem; }
  .slide-desc { 
    font-size: 0.95rem; 
    color: rgba(255,255,255,0.95); /* More white text for mobile */
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.5); /* Enhanced text shadow for better contrast */
  }
  .slide-overlay {
    background: linear-gradient(
      135deg,
      rgba(8, 13, 26, 0.96) 0%,
      rgba(29, 78, 216, 0.65) 50%,
      rgba(8, 13, 26, 0.88) 100%
    ); /* More opaque background for mobile */
  }
  .slide-badge {
    color: rgba(255,255,255,0.98); /* Whiter badge text */
    background: rgba(255,255,255,0.15); /* Slightly more opaque background */
  }
  .testimonial-card { padding: 32px 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ============================================================
   SCROLL BAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-l); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: rgba(29, 78, 216, 0.2); color: var(--text); }
