/* =====================================================
   PureteGO Design System
   Paleta: #01a7ee (Azul) · #0c0c0d (Negro) · #f7f8f9 (Blanco)
   ===================================================== */

/* ===== CSS Variables ===== */
:root {
  /* Colors - Brand */
  --color-primary: #01a7ee;
  --color-primary-dark: #0089c7;
  --color-primary-light: #33b8f1;
  --color-secondary: #0c0c0d;
  --color-white: #f7f8f9;

  /* Colors - Extended Palette */
  --color-accent: #00d4aa;
  --color-warning: #ff6b35;
  --color-success: #10b981;
  --color-error: #ef4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #01a7ee 0%, #00cfee 100%);
  --gradient-dark: linear-gradient(145deg, #0c0c0d 0%, #16213e 100%);
  --gradient-hero: linear-gradient(135deg, #0c0c0d 0%, #0a192f 50%, #16213e 100%);
  --gradient-cta: linear-gradient(135deg, #01a7ee 0%, #00cfee 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', var(--font-primary);

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(1, 167, 238, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-secondary);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  line-height: 1.2;
  color: var(--color-secondary);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

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

/* Glassmorphism Utilities */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md), 0 0 20px rgba(1, 167, 238, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(1, 167, 238, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 12, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(12, 12, 13, 0.98);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-list {
  display: flex;
  gap: var(--space-6);
}

.nav-link {
  color: var(--color-white);
  font-weight: var(--font-medium);
  padding: var(--space-2) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

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

/* Dropdown Submenu */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(12, 12, 13, 0.98);
  border-radius: var(--radius-lg);
  padding: var(--space-3) 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: var(--space-3) var(--space-6);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: rgba(1, 167, 238, 0.15);
  color: var(--color-primary);
  padding-left: var(--space-8);
}

.nav-dropdown-title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  padding: var(--space-2) var(--space-6) var(--space-1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-2);
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: var(--space-3) 0;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-fast);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(1, 167, 238, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-text h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero-title .text-gradient {
  display: block;
}

.hero-text h1 .highlight {
  color: var(--color-primary);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  line-height: 1.6;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 450px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* ===== Section Base ===== */
.section {
  padding: var(--space-24) 0;
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
  padding: var(--space-8) var(--space-4);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  color: rgba(12, 12, 13, 0.7);
  font-size: var(--text-lg);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* Fix: Headers in dark sections must be white */
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-dark .section-header h2 {
  color: var(--color-white);
}

/* Fix: Service and Blog cards keep dark text even in dark sections */
.section-dark .service-card h3,
.section-dark .blog-card h3,
.section-dark .blog-card h3 a {
  color: var(--color-secondary);
}

.section-dark .service-card p,
.section-dark .blog-card p {
  color: rgba(12, 12, 13, 0.7);
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(1, 167, 238, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  border-color: transparent;
}

.service-icon svg,
.service-icon i {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.service-card:hover .service-icon svg,
.service-card:hover .service-icon i {
  color: var(--color-white);
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.service-card p {
  color: rgba(12, 12, 13, 0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.service-link {
  color: var(--color-primary);
  font-weight: var(--font-semibold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.service-link:hover {
  gap: var(--space-3);
}

/* ===== SEO Section (Mockup Style) ===== */
.seo-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.seo-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
}

.seo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.seo-mockup {
  position: relative;
}

.phone-mockup {
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}

.phone-mockup img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.seo-text h2 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.seo-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-6);
  font-size: var(--text-lg);
  line-height: 1.8;
}

/* ===== Benefits / Stats Section ===== */
.benefit-card {
  text-align: center;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-number {
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
  display: block;
  margin-bottom: var(--space-2);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-label {
  font-weight: var(--font-semibold);
  color: var(--color-secondary);
  font-size: var(--text-base);
  opacity: 0.8;
}

/* ===== Mobile Sticky Bar ===== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 12, 13, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--space-3) var(--space-4);
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: var(--space-3);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
  }
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  color: white;
}

.sticky-btn-wa {
  background-color: #25d366;
}

.sticky-btn-call {
  background-color: var(--color-primary);
}

/* ===== Blog Preview ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: var(--space-6);
}

.blog-card-meta {
  font-size: var(--text-sm);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.blog-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.blog-card p {
  color: rgba(12, 12, 13, 0.7);
  font-size: var(--text-sm);
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--gradient-primary);
  text-align: center;
  padding: var(--space-20) 0;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: var(--color-white);
  color: var(--color-primary);
}

.cta-section .btn:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-4);
  line-height: 1.7;
}

.footer-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-6);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
}

.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

/* ===== Daily Bible Verse ===== */
.daily-verse {
  text-align: center;
  flex: 1;
  padding: 0 var(--space-4);
}

.daily-verse .verse-text {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-size: var(--text-sm);
}

.daily-verse .verse-ref {
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
}

/* ===== Google Badges ===== */
.google-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.google-badge {
  height: 80px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-fast);
}

.google-badge:hover {
  transform: scale(1.05);
}

/* Footer Google Badges */
.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  /* Reduced gap slightly for better mobile fit */
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.footer-google-badge {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast);
}

.footer-google-badge:hover {
  transform: scale(1.05);
}

/* ===== New Testimonials Integrated Success Showcase ===== */
.testimonials-featured-section {
  padding: 8rem 0;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.testimonials-dual-layout {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}

.testimonials-phone-column {
  flex: 0 0 420px;
}

.success-mockup-container {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.success-mockup-frame {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  pointer-events: none;
  display: block;
}

.success-video-wrapper {
  position: absolute;
  top: 2%;
  /* Adjusted to sit inside frame */
  left: 4%;
  width: 92%;
  height: 96%;
  z-index: 12;
  /* Now ON TOP of the frame to ensure visibility if frame is opaque */
  border-radius: 45px;
  /* Slightly tighter radius */
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  /* Hide edges */
}

.video-controls-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  /* Darker for contrast */
  backdrop-filter: blur(8px);
  padding: 15px 20px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  /* Always visible for now per user request implicitly */
  visibility: visible;
  transition: all 0.3s ease;
  border-bottom-left-radius: 40px;
  /* Match mockup corners roughly */
  border-bottom-right-radius: 40px;
}

/* Show on hover of the container */
.success-mockup-container:hover .video-controls-panel {
  opacity: 1;
  visibility: visible;
}

.video-progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.video-progress-bar {
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.video-buttons-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.video-btn {
  background: none;
  border: none;
  color: white !important;
  font-size: 1rem;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s;
}

.video-btn:hover {
  transform: scale(1.2);
  color: var(--color-primary);
}

.success-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials-content-column {
  flex: 1;
}

.section-header-compact {
  margin-bottom: 4rem;
  text-align: left;
}

.section-header-compact h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.testimonials-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card-v2 {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.testimonial-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(1, 167, 238, 0.1);
  border-color: rgba(1, 167, 238, 0.2);
}

.testimonial-card-v2 .testimonial-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

.testimonial-card-v2 .testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-card-v2 .testimonial-author h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.testimonial-card-v2 .testimonial-author span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

@media (max-width: 1100px) {
  .testimonials-dual-layout {
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .testimonials-dual-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonials-phone-column {
    margin-bottom: 5rem;
    max-width: 320px;
  }

  .section-header-compact {
    text-align: center;
  }

  .testimonials-compact-grid {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonial-card-v2 {
    padding: 1.5rem;
  }
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

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

/* ===== Consultation Form Modal ===== */
.modal-consultoria {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeInModal 0.3s ease;
}

.modal-consultoria.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content-consultoria {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUpModal 0.3s ease;
}

.modal-header-consultoria {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header-consultoria h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.modal-close-consultoria {
  background: none;
  border: none;
  font-size: 2rem;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.modal-close-consultoria:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.modal-body-consultoria {
  padding: 2rem;
}

.modal-disclaimer {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.modal-disclaimer svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

.modal-disclaimer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1e3a8a;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-row:has(textarea),
.form-row:has(input[id="empresa"]),
.form-row:has(input[id="cargo"]),
.form-row:has(input[id="nombre"]) {
  grid-template-columns: 1fr;
}

/* Specific overrides for 2-column rows if needed */
.form-row-2col {
  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.form-group .required {
  color: #dc2626;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(1, 167, 238, 0.1);
}

.form-group small {
  font-size: 0.8rem;
  color: #6b7280;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.btn-primary-form {
  padding: 0.75rem 2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(1, 167, 238, 0.3);
}

.btn-primary-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 167, 238, 0.4);
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUpModal {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@keyframes pulse {

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

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

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

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 300px;
  }

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

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

  .seo-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--color-primary);
  }

  /* Mobile Dropdown Accordion */
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 100%;
    display: none;
  }

  .nav-dropdown.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    display: block;
    padding: var(--space-2) var(--space-4);
  }

  .nav-item:hover .nav-dropdown {
    opacity: 0;
    visibility: hidden;
  }

  .nav-item:hover .nav-dropdown.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown a {
    padding: var(--space-2) 0;
    color: rgba(255, 255, 255, 0.8);
    white-space: normal;
    font-size: var(--text-sm);
  }

  .nav-dropdown a:hover {
    padding-left: var(--space-2);
    background: transparent;
  }

  .nav-dropdown-title {
    padding: var(--space-2) 0 var(--space-1);
    font-size: var(--text-xs);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--space-1);
  }

  .nav-dropdown-divider {
    margin: var(--space-2) 0;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-list .btn-primary {
    display: flex;
    margin-top: var(--space-4);
    width: 100%;
  }

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

  .menu-toggle {
    display: flex;
  }

  .nav .btn {
    display: none;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .whatsapp-float {
    bottom: 100px;
    /* Moved up to clear sticky bar */
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .scroll-up.show {
    bottom: 165px;
    /* Moved up correspondingly */
  }

  .section {
    padding: var(--space-12) 0;
  }

  /* Section Padding for mobile */
  .container {
    padding: 0 var(--space-6);
  }

  /* Testimonials spacing fix */
  .testimonials-grid {
    gap: var(--space-4);
  }

  /* FAQ alignment fix */
  .faq-question {
    text-align: left;
    padding: 1.25rem;
  }

  /* Footer centering */
  .footer-grid {
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 0.75rem;
  }

  /* Prevent overlap from sticky bar */
  .footer {
    padding-bottom: 5rem;
  }
}

/* ===== Utilities ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

.mt-4 {
  margin-top: var(--space-4);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }

  .desktop-only {
    display: none !important;
  }
}

/* Smartphone Showcase */
.smartphone-showcase {
  padding: 4rem 0;
  overflow: hidden;
}

.showcase-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.showcase-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.showcase-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.showcase-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.showcase-cta-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-icon {
  width: 40px;
  height: 40px;
  background: rgba(1, 167, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.showcase-cta-inner span {
  font-weight: 600;
  color: white;
}

.phone-mockup-container {
  position: relative;
  width: 300px;
  height: 600px;
  flex-shrink: 0;
}

.phone-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  /* Fix for placeholder appearance */
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.phone-video-content {
  position: absolute;
  top: 18px;
  left: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  border-radius: 35px;
  overflow: hidden;
  z-index: 1;
  background: black;
}

.phone-video-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .showcase-flex {
    gap: 2rem;
    flex-direction: column;
    text-align: center;
  }

  .showcase-cta {
    display: flex;
    justify-content: center;
  }

  .phone-mockup-container {
    width: 260px;
    height: 520px;
  }

  .showcase-text h2 {
    font-size: 2rem;
  }
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Testimonials Section ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.testimonial-text {
  color: rgba(12, 12, 13, 0.8);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: var(--space-4);
}

.testimonial-author-info h4 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
}

.testimonial-author-info span {
  font-size: var(--text-sm);
  color: rgba(12, 12, 13, 0.6);
}

.testimonial-date {
  font-size: var(--text-xs);
  color: var(--color-primary);
  margin-left: auto;
}

/* ===== FAQ Section ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: var(--space-5) var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-secondary);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

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

.faq-question svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--color-primary);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-6) var(--space-6);
  color: rgba(12, 12, 13, 0.8);
  line-height: 1.7;
}

/* Dark section variants for testimonials */
.section-dark .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .testimonial-text {
  color: rgba(255, 255, 255, 0.8);
}

.section-dark .testimonial-author-info h4 {
  color: var(--color-white);
}

.section-dark .testimonial-author-info span {
  color: rgba(255, 255, 255, 0.6);
}

.section-dark .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* Responsive for testimonials and FAQ */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: var(--text-base);
    padding: var(--space-4) var(--space-5);
  }
}

/* ===== Pricing Table ===== */
.pricing-section {
  background: var(--color-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-primary);
}

.pricing-card.featured {
  border: 2px solid var(--color-primary);
  transform: scale(1.05);
  z-index: 10;
  box-shadow: var(--shadow-xl);
}

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

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--color-primary);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: var(--text-xs);
  font-weight: bold;
  text-transform: uppercase;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.pricing-price {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.pricing-currency {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: rgba(12, 12, 13, 0.6);
}

.pricing-period {
  font-size: var(--text-sm);
  color: rgba(12, 12, 13, 0.6);
  font-weight: normal;
}

.pricing-desc {
  font-size: var(--text-sm);
  color: rgba(12, 12, 13, 0.7);
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-8);
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(12, 12, 13, 0.8);
  line-height: 1.5;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-footer {
  text-align: center;
}

.pricing-footer .btn {
  width: 100%;
}

.btn-full {
  width: 100%;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* ===== Scroll Up Button ===== */
.scroll-up {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-up.show {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.scroll-up:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-5px);
}

.scroll-up svg {
  width: 24px;
  height: 24px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

/* ===== Plan Details Modal ===== */
.modal-plan {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: fadeInModal 0.3s ease;
  align-items: center;
  justify-content: center;
}

.modal-plan.active {
  display: flex;
}

.modal-content-plan {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slideUpModal 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-header-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header-plan h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.modal-close-plan {
  background: none;
  border: none;
  font-size: 2rem;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.modal-close-plan:hover {
  background-color: #e5e7eb;
  color: #111827;
}

.modal-body-plan {
  padding: 2rem;
  line-height: 1.7;
}

.modal-body-plan h3 {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
}

.modal-body-plan ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.modal-body-plan li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.modal-body-plan li::before {
  content: '•';
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

.modal-footer-plan {
  padding: 1.5rem 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: right;
  background: #f9fafb;
  position: sticky;
  bottom: 0;
}

/* ===== New Testimonials Integrated Success Showcase ===== */
.testimonials-featured-section {
  padding: 8rem 0;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.testimonials-dual-layout {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}

.testimonials-phone-column {
  flex: 0 0 350px;
}

.success-mockup-container {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.success-mockup-frame {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  pointer-events: none;
  display: block;
}

.success-video-wrapper {
  position: absolute;
  top: 1.2%;
  left: 3.2%;
  width: 93.6%;
  height: 97.6%;
  z-index: 5;
  border-radius: 44px;
  overflow: hidden;
  background: #000;
}

.success-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials-content-column {
  flex: 1;
}

.section-header-compact {
  margin-bottom: 4rem;
  text-align: left;
}

.section-header-compact h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.testimonials-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card-v2 {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.testimonial-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(1, 167, 238, 0.1);
  border-color: rgba(1, 167, 238, 0.2);
}

.testimonial-card-v2 .testimonial-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

.testimonial-card-v2 .testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-card-v2 .testimonial-author h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.testimonial-card-v2 .testimonial-author span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

@media (max-width: 1100px) {
  .testimonials-dual-layout {
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .testimonials-dual-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonials-phone-column {
    margin-bottom: 5rem;
    max-width: 320px;
  }

  .section-header-compact {
    text-align: center;
  }

  .testimonials-compact-grid {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonial-card-v2 {
    padding: 1.5rem;
  }
}

/* ===== Area de Cobertura Section ===== */
.section-cobertura {
  background: var(--color-white);
  padding: 8rem 0;
}

.cobertura-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.cobertura-city {
  background: #f8fafc;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.cobertura-city:hover {
  transform: translateY(-3px);
  background: white;
  border-color: var(--color-primary);
  box-shadow: 0 10px 20px rgba(1, 167, 238, 0.1);
}

.cobertura-city strong {
  color: var(--color-secondary);
}

.city-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(1, 167, 238, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}

.cobertura-text-optimized {
  margin-top: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.cobertura-text-optimized em {
  font-weight: 600;
  color: var(--color-secondary);
  font-style: normal;
}