/* ============================================================
   SYNERGY LIGHT - Estilos Principales
   Empresa de Energía Eléctrica Residencial en Texas
   ============================================================ */

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

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

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

:root {
  /* ═══════════════════════════════════════════════════
     COLORES CORPORATIVOS SYNERGY LIGHT
     ═══════════════════════════════════════════════════ */
  --primary-green: #03bc89;
  --primary-green-dark: #029a6f;
  --primary-green-light: #04d99e;
  --accent-yellow: #FFD700;
  
  /* Fondos oscuros */
  --dark-bg: #000000;
  --dark-bg-secondary: #0a0a0a;
  --dark-bg-tertiary: #1a1a1a;
  
  /* Textos */
  --text-white: #FFFFFF;
  --text-light: #E0E0E0;
  --text-gray: #B0B0B0;
  
  /* Gradientes y efectos */
  --gradient-main: linear-gradient(135deg, #03bc89 0%, #029a6f 100%);
  --gradient-glow: linear-gradient(135deg, #03bc89 0%, #FFD700 100%);
  --shadow-glow: 0 0 20px rgba(3, 188, 137, 0.5);
  --shadow-glow-sm: 0 0 10px rgba(3, 188, 137, 0.3);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-sm: 8px;
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-fast: all 0.15s ease;
  --header-height: 80px;
  --section-padding: 100px 0;
  --container-width: 1200px;
  /* Tipografía */
  --font-primary: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-accent: 'Orbitron', sans-serif;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.35rem); }

p {
  margin-bottom: 1rem;
  font-weight: 400;
}

.gradient-text {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.price-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ----- SECTION STYLES ----- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(3, 188, 137, 0.1);
  border: 1px solid rgba(3, 188, 137, 0.3);
  border-radius: 50px;
  color: var(--primary-green);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-base);
  text-transform: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--dark-bg);
  box-shadow: var(--shadow-glow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--dark-bg);
  box-shadow: var(--shadow-glow-sm);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

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

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

/* ----- HEADER / NAVIGATION ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-base);
  height: var(--header-height);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(3, 188, 137, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

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

.logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition-base);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
  background: rgba(3, 188, 137, 0.1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

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

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

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

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

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

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.lang-btn {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
  transition: var(--transition-base);
}

.lang-btn.active {
  color: var(--primary-green);
  background: rgba(3, 188, 137, 0.15);
}

.lang-btn:hover {
  color: var(--primary-green);
}

.lang-divider {
  color: var(--text-gray);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION - VIDEO BACKGROUND
   ═══════════════════════════════════════════════════════ */

.hero-video-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
  padding: 120px 20px 60px;
}

/* Video de fondo */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  pointer-events: none;
}

/* Overlay oscuro */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

/* Contenido del Hero */
/* ══════════════════════════════════════════════════════
   HERO - LAYOUT MÁS COMPACTO
   ═══════════════════════════════════════════════════════ */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

/* Contenedor de texto - más ancho */
.hero-text-container {
  flex: 1;
  text-align: left;
  max-width: 550px;
  padding-right: 10px;
}

/* ═══════════════════════════════════════════════════════
   TEXTOS DEL HERO - ESTILOS EXACTOS
   ═══════════════════════════════════════════════════════ */

/* Línea 1: ¿NECESITAS - Amarillo */
.hero-title-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #FFD700;
  text-shadow: 
    0 0 20px rgba(255, 215, 0, 0.8),
    0 0 40px rgba(255, 215, 0, 0.6),
    3px 3px 6px rgba(0, 0, 0, 0.8);
  margin: 0;
  line-height: 1.1;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease 0.5s both;
}

/* Línea 2: ELECTRICIDAD? - Amarillo grande */
.hero-title-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: #FFD700;
  text-shadow: 
    0 0 30px rgba(255, 215, 0, 0.9),
    0 0 60px rgba(255, 215, 0, 0.7),
    4px 4px 8px rgba(0, 0, 0, 0.9);
  margin: 5px 0;
  line-height: 1;
  letter-spacing: 3px;
  animation: fadeInDown 1s ease 0.7s both;
}

/* Línea 3: CONSULTA - Blanco izquierda (encima de NUESTROS PLANES) */
.hero-subtitle-left {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #FFFFFF;
  text-align: left;
  text-shadow: 
    0 0 15px rgba(255, 255, 255, 0.6),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 10px 0;
  letter-spacing: 2px;
  animation: fadeInLeft 1s ease 0.9s both;
}

/* Línea 4: NUESTROS PLANES DE CONEXIÓN - Blanco */
.hero-subtitle-2,
.hero-subtitle-3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.7),
    3px 3px 6px rgba(0, 0, 0, 0.8);
  margin: 5px 0;
  line-height: 1.2;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 1.1s both;
}

.hero-subtitle-3 {
  margin-bottom: 15px;
}

/* Línea 5: ELÉCTRICA. - Verde grande */
.hero-title-electrica {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 900;
  color: #03bc89;
  text-shadow: 
    0 0 40px rgba(3, 188, 137, 0.9),
    0 0 80px rgba(3, 188, 137, 0.7),
    5px 5px 10px rgba(0, 0, 0, 0.9);
  margin: 10px 0;
  line-height: 1;
  letter-spacing: 4px;
  animation: fadeInScale 1.2s ease 1.3s both;
}

/* Línea 6: para todos los Texanos - Blanco pequeño */
.hero-footer {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #FFFFFF;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.5),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 15px 0 0 0;
  letter-spacing: 1px;
  animation: fadeInBottom 1s ease 1.5s both;
}

/* ═══════════════════════════════════════════════════════
   GLASS CARD PREMIUM
   ═══════════════════════════════════════════════════════ */

.hero-glass-card {
  flex-shrink: 0;
  position: relative;
  animation: fadeInScale 1.2s ease 1.3s both, floatCard 6s ease-in-out infinite;
}

.glass-card-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(3, 188, 137, 0.3);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.37),
    inset 0 0 20px rgba(3, 188, 137, 0.1),
    0 0 40px rgba(3, 188, 137, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
}

.glass-card-inner:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(3, 188, 137, 0.6);
  box-shadow: 
    0 12px 40px 0 rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(3, 188, 137, 0.2),
    0 0 60px rgba(3, 188, 137, 0.4);
}

.hero-glass-image {
  width: clamp(250px, 35vw, 450px);
  height: auto;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  position: relative;
  z-index: 2;
}

.glass-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(3, 188, 137, 0.3) 0%,
    rgba(3, 188, 137, 0.1) 40%,
    transparent 70%
  );
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   BOTONES PREMIUM - ESTILO GLOSSY/GLASSY
   Inspirado en diseño moderno con gradientes y brillo
   ═══════════════════════════════════════════════════════ */

.hero-cta-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  animation: fadeInUp 1s ease 1.7s both;
}

.btn-hero-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
  
  /* Efecto glossy base */
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════
   BOTÓN PRIMARIO - VERDE SYNERGY LIGHT GLOSSY
   ═══════════════════════════════════════════════════════ */

.btn-hero-primary {
  background: linear-gradient(
    135deg, 
    #03bc89 0%, 
    #029a6f 50%,
    #04d99e 100%
  );
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  
  /* Brillo superior */
  box-shadow: 
    0 10px 30px rgba(3, 188, 137, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 0 40px rgba(3, 188, 137, 0.3);
}

/* Capa de brillo superior (glossy effect) */
.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0.3) 0%, 
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

/* Brillo inferior sutil */
.btn-hero-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    0deg, 
    rgba(0, 0, 0, 0.1) 0%, 
    transparent 100%
  );
  border-radius: 0 0 50px 50px;
  pointer-events: none;
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(3, 188, 137, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 0 60px rgba(3, 188, 137, 0.5);
}

.btn-hero-primary:active {
  transform: translateY(-2px) scale(0.98);
}

/* ═══════════════════════════════════════════════════════
   BOTÓN SECUNDARIO - BLANCO/TRANSPARENTE CON BRILLO
   ═══════════════════════════════════════════════════════ */

.btn-hero-secondary {
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%
  );
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  
  /* Brillo blanco */
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 0 40px rgba(255, 255, 255, 0.1);
}

/* Capa de brillo superior */
.btn-hero-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

.btn-hero-secondary:hover {
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.1) 100%
  );
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 0 60px rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════
   ICONOS DE BOTONES
   ═══════════════════════════════════════════════════════ */

.btn-icon {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-hero-primary .btn-icon {
  animation: pulseIcon 2s ease-in-out infinite;
}

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

/* ═══════════════════════════════════════════════════════
   EFECTO RIPPLE AL HACER CLICK
   ═══════════════════════════════════════════════════════ */

.btn-hero-premium .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════
   ANIMACIONES
   ═══════════════════════════════════════════════════════ */

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}


/* ═══════════════════════════════════════════════════════
   PARTÍCULAS DE ENERGÍA
   ═══════════════════════════════════════════════════════ */

.energy-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #03bc89;
  border-radius: 50%;
  box-shadow: 0 0 10px #03bc89, 0 0 20px #03bc89;
  animation: floatParticle linear infinite;
}

.particle-1 {
  left: 10%;
  top: 20%;
  animation-duration: 15s;
  animation-delay: 0s;
}

.particle-2 {
  left: 30%;
  top: 60%;
  animation-duration: 20s;
  animation-delay: 2s;
}

.particle-3 {
  left: 50%;
  top: 40%;
  animation-duration: 18s;
  animation-delay: 4s;
}

.particle-4 {
  left: 70%;
  top: 80%;
  animation-duration: 22s;
  animation-delay: 1s;
}

.particle-5 {
  left: 90%;
  top: 30%;
  animation-duration: 25s;
  animation-delay: 3s;
}

/* ═══════════════════════════════════════════════════════
   ANIMACIONES DEL HERO
   ═══════════════════════════════════════════════════════ */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glowIcon {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1));
  }
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ═══════════════════════════════════════════════════════
   PREVENIR DESBORDAMIENTO DE TEXTO EN HERO
   ═══════════════════════════════════════════════════════ */

.hero-title-1,
.hero-title-2,
.hero-subtitle-left,
.hero-subtitle-2,
.hero-subtitle-3,
.hero-title-electrica,
.hero-footer {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* ═══════════════════════════════════════════════════════
   HERO - TAMAÑOS REDUCIDOS EN DESKTOP
   ═══════════════════════════════════════════════════════ */

@media (min-width: 1025px) {
  .hero-title-1 {
    font-size: clamp(1.0 rem, 3vw, 1.0 rem);
    line-height: 1.5;
    margin-bottom: 6px;
  }
  
   .hero-title-2 {
   font-size: clamp(2.2rem, 5vw, 3rem);
   line-height: 1.1;
   margin: 8px 0;
   white-space: nowrap !important;  /* ← AGREGA ESTA LÍNEA */
  }
  
  .hero-subtitle-left {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin: 12px 0 8px;
  }
  
  .hero-subtitle-2,
  .hero-subtitle-3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.25;
    margin: 6px 0;
  }
  
  .hero-title-electrica {
    font-size: clamp(2.0rem, 6vw, 3.5rem);
    line-height: 1.05;
    margin: 14px 0;
    letter-spacing: 1px;
  }
  
  .hero-footer {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-top: 15px;
  }
  
  .hero-text-container {
    max-width: 600px;
    padding-right: 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   PREVENIR SALTOS DE LÍNEA CON GUIONES
   ═══════════════════════════════════════════════════════ */

.hero-title-1,
.hero-title-2,
.hero-subtitle-2,
.hero-subtitle-3,
.hero-title-electrica {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

/* ═══════════════════════════════════════════════════════
   PANTALLAS MUY GRANDES (1440px+)
   ═══════════════════════════════════════════════════════ */

@media (min-width: 1440px) {
  .hero-title-1 { font-size: 2.5rem; }
  .hero-title-2 { font-size: 3rem; }
  .hero-subtitle-2,
  .hero-subtitle-3 { font-size: 1.5rem; }
  .hero-title-electrica { font-size: 3.5rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - TABLET (1024px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text-container {
    text-align: center;
    padding: 0 10px;
  }
  
  .hero-subtitle-left {
    text-align: center;
  }
  
  .hero-glass-card {
    margin-top: 40px;
  }
  
  .hero-glass-image {
    width: clamp(200px, 40vw, 350px);
  }
  
  .glass-card-inner {
    padding: 20px;
  }
  
  .hero-cta-buttons {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO RESPONSIVE - MÓVIL (768px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Ajustar padding general del Hero */
  .hero-video-section {
    padding: 100px 15px 40px;
    min-height: 100vh;
  }
  
  /* Contenido del Hero - Columna única */
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .hero-text-container {
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }
  
  /* ═══════════════════════════════════════════════════════
     TEXTOS - TAMAÑOS REDUCIDOS PARA MÓVIL
     ═══════════════════════════════════════════════════════ */
  
  /* ¿NECESITAS */
  .hero-title-1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 5px;
  }
  
  /* ELECTRICIDAD? */
  .hero-title-2 {
    font-size: clamp(2rem, 10vw, 3.5rem);
    line-height: 1.1;
    margin: 10px 0;
  }
  
  /* CONSULTA */
  .hero-subtitle-left {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
    text-align: center;
    margin: 15px 0 10px;
  }
  
  /* NUESTROS PLANES DE CONEXIÓN */
  .hero-subtitle-2,
  .hero-subtitle-3 {
    font-size: clamp(1rem, 5vw, 1.5rem);
    line-height: 1.3;
    margin: 5px 0;
  }
  
  /* ELÉCTRICA. */
  .hero-title-electrica {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 1;
    margin: 15px 0;
    word-break: break-word;
  }
  
  /* para todos los Texanos */
  .hero-footer {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-top: 15px;
  }
  
  /* ═══════════════════════════════════════════════════════
     GLASS CARD - AJUSTAR TAMAÑO
     ═══════════════════════════════════════════════════════ */
  
  .hero-glass-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-glass-image {
    width: 100%;
    max-width: 280px;
  }
  
  .glass-card-inner {
    padding: 20px;
    border-radius: 20px;
  }
  
  /* ═══════════════════════════════════════════════════════
     BOTONES CTA - APILADOS
     ═══════════════════════════════════════════════════════ */
  
  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    padding: 0 10px;
  }
  
  .btn-hero-premium {
    width: 100%;
    max-width: 300px;
    padding: 14px 28px;
    font-size: 14px;
  }

  /* Header mobile */
  .header-container {
    padding: 10px 15px;
  }
  
  .logo-premium {
    width: 120px;
  }
  
  .nav-premium {
    width: 85%;
    max-width: 320px;
  }
  
  .cta-button-whatsapp {
    width: 40px;
    height: 40px;
  }
  
  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO RESPONSIVE - MÓVIL PEQUEÑO (480px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .hero-video-section {
    padding: 90px 10px 30px;
  }
  
  .hero-text-container {
    padding: 0 5px;
  }
  
  /* Textos aún más pequeños */
  .hero-title-1 {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }
  
  .hero-title-2 {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }
  
  .hero-subtitle-left {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }
  
  .hero-subtitle-2,
  .hero-subtitle-3 {
    font-size: clamp(0.9rem, 4.5vw, 1.3rem);
  }
  
  .hero-title-electrica {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  
  .hero-footer {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }
  
  /* Glass card más pequeña */
  .hero-glass-card {
    max-width: 250px;
  }
  
  .hero-glass-image {
    max-width: 230px;
  }
  
  .glass-card-inner {
    padding: 15px;
  }
  
  /* Botones más compactos */
  .btn-hero-premium {
    padding: 12px 24px;
    font-size: 13px;
    max-width: 280px;
  }
  
  .btn-icon {
    font-size: 16px;
  }
  
  .hero-cta-buttons {
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO RESPONSIVE - MÓVIL MUY PEQUEÑO (360px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 360px) {
  .hero-video-section {
    padding: 80px 8px 20px;
  }
  
  .hero-title-1 {
    font-size: 1.2rem;
  }
  
  .hero-title-2 {
    font-size: 1.6rem;
  }
  
  .hero-subtitle-left {
    font-size: 0.75rem;
  }
  
  .hero-subtitle-2,
  .hero-subtitle-3 {
    font-size: 0.85rem;
  }
  
  .hero-title-electrica {
    font-size: 1.8rem;
  }
  
  .hero-footer {
    font-size: 0.75rem;
  }
  
  .hero-glass-card {
    max-width: 200px;
  }
  
  .hero-glass-image {
    max-width: 180px;
  }
}

/* ----- BENEFITS SECTION ----- */
.beneficios-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  padding: 100px 0;
}

.beneficios-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(3, 188, 137, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 188, 137, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}

.benefits {
  background: var(--dark-bg);
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(3, 188, 137, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(3, 188, 137, 0.1);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(3, 188, 137, 0.6);
  box-shadow: 
    0 15px 40px rgba(3, 188, 137, 0.3),
    inset 0 0 30px rgba(3, 188, 137, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(3, 188, 137, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border: 2px solid rgba(3, 188, 137, 0.4);
  box-shadow: 0 0 30px rgba(3, 188, 137, 0.3);
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   SECCIÓN PLANES - FONDO PREMIUM CON GRADIENTE
   ═══════════════════════════════════════════════════════ */

#planes-premium {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #000000;
}

.ciudad-nocturna-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/services/Fondo-de-ciudad-nocturna.webp') center center / cover no-repeat;
  background-attachment: fixed;
  z-index: 0;
  opacity: 0.5;
}

.ciudad-nocturna-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(0, 0, 0, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
}

#planes-premium .container {
  position: relative;
  z-index: 2;
}

#planes-premium .section-title {
  color: #FFFFFF;
}

#planes-premium .section-subtitle,
#planes-premium .planes-subtitle {
  color: #B0B0B0;
}

#planes-premium .plan-icon-wrapper {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 15px rgba(3, 188, 137, 0.4));
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════
   GRID DE PLANES
   ═══════════════════════════════════════════════════════ */

.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   TARJETA DE PLAN PREMIUM
   ═══════════════════════════════════════════════════════ */

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(3, 188, 137, 0.25);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(3, 188, 137, 0.05);
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(3, 188, 137, 0.6);
  box-shadow: 
    0 20px 50px rgba(3, 188, 137, 0.3),
    inset 0 0 30px rgba(3, 188, 137, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(3, 188, 137, 0.1), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.plan-card:hover::before {
  left: 100%;
}

/* Plan destacado (Estándar) */
.plan-card.featured {
  background: linear-gradient(135deg, rgba(3, 188, 137, 0.12) 0%, rgba(4, 217, 158, 0.06) 100%);
  border-color: #03bc89;
  border-width: 3px;
  box-shadow: 
    0 15px 40px rgba(3, 188, 137, 0.35),
    inset 0 0 40px rgba(3, 188, 137, 0.15);
  transform: scale(1.05);
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 
    0 25px 60px rgba(3, 188, 137, 0.45),
    inset 0 0 50px rgba(3, 188, 137, 0.2);
}

/* Badge "Más Popular" */
.plan-card.featured::before {
  content: '🏆 MÁS POPULAR';
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
  padding: 6px 16px;
  transform: none;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(3, 188, 137, 0.4);
  z-index: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   CONTENIDO DE LA TARJETA
   ═══════════════════════════════════════════════════════ */

.plan-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #F0F0F0;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.plan-price-amount {
  font-size: 4rem;
  font-weight: 900;
  color: #03bc89;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  text-shadow: 0 0 20px rgba(3, 188, 137, 0.5);
}

.plan-price-unit {
  font-size: 1.2rem;
  color: #666666;
  font-weight: 600;
}

.plan-deposit {
  font-size: 0.95rem;
  color: #666666;
  margin-top: 10px;
}

.plan-deposit strong {
  color: #03bc89;
  font-weight: 700;
}

/* Lista de características */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: #E0E0E0;
  transition: all 0.3s ease;
}

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

.plan-features li:hover {
  padding-left: 10px;
  color: #FFFFFF;
}

.plan-features li .check-icon {
  color: #03bc89;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.plan-features li .x-icon {
  color: #FF4444;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Botón de plan */
.plan-button {
  display: block;
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 25px rgba(3, 188, 137, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.plan-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

.plan-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(3, 188, 137, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.plan-button:active {
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════
   BOTÓN "VER TODOS LOS PLANES"
   ═══════════════════════════════════════════════════════ */

.ver-todos-planes {
  display: inline-block;
  margin-top: 50px;
  padding: 16px 40px;
  background: transparent;
  color: #03bc89;
  border: 2px solid #03bc89;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.ver-todos-planes:hover {
  background: #03bc89;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(3, 188, 137, 0.4);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - TABLET
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .planes-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .plan-card.featured {
    transform: scale(1);
  }
  
  .plan-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .plan-price-amount {
    font-size: 3.5rem;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - MOBILE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .planes-section {
    padding: 60px 0;
  }
  
  .planes-section .section-title {
    font-size: 2rem;
  }
  
  .planes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .plan-card {
    padding: 30px 20px;
  }
  
  .plan-price-amount {
    font-size: 3rem;
  }
  
  .plan-name {
    font-size: 1.1rem;
  }
  
  .plan-features li {
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════
   ANIMACIONES
   ═══════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-card {
  animation: fadeInUp 0.6s ease both;
}

.plan-card:nth-child(1) {
  animation-delay: 0.1s;
}

.plan-card:nth-child(2) {
  animation-delay: 0.2s;
}

.plan-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* ----- CALCULATOR SECTION ----- */
.calculadora-section {
  background: linear-gradient(135deg, #029a6f 0%, #000000 100%);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.calculadora-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(3, 188, 137, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(4, 217, 158, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.calculadora-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 188, 137, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatCircle 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatCircle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 50px) scale(1.1);
  }
}

.calculator-section {
  background: var(--dark-bg);
  position: relative;
}

.calculadora-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(3, 188, 137, 0.4);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(3, 188, 137, 0.2);
  position: relative;
  z-index: 2;
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--dark-bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  border: 1px solid rgba(3, 188, 137, 0.1);
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group label {
  font-weight: 600;
  color: var(--text-white);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--text-white);
  font-size: 1rem;
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(3, 188, 137, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2303bc89' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--dark-bg);
  color: var(--text-white);
}

.input-with-icon {
  position: relative;
}

.input-with-icon .prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.1rem;
}

.input-with-icon input {
  padding-left: 36px;
}

.calculator-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 30px;
  background: var(--dark-bg);
  border-radius: var(--border-radius);
  border: 1px solid rgba(3, 188, 137, 0.15);
}

.calculator-result.hidden {
  display: none;
}

.result-item {
  text-align: center;
  padding: 16px;
  background: rgba(3, 188, 137, 0.05);
  border-radius: var(--border-radius-sm);
}

.result-item h4 {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.result-item .amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-item .amount.savings {
  color: var(--primary-green);
  font-size: 2.5rem;
}

.result-item.savings-highlight {
  background: rgba(3, 188, 137, 0.1);
  border: 1px solid var(--primary-green);
}

.result-cta {
  margin-top: 16px;
}

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

/* ----- NOSOTROS SECTION ----- */
.nosotros-section {
  background: #FFFFFF;
  color: #000000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.nosotros-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 188, 137, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.nosotros-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.nosotros-text h3 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.nosotros-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
}

.nosotros-text h4 {
  font-size: 1.3rem;
  color: #03bc89;
  margin: 30px 0 15px;
  font-family: 'Montserrat', sans-serif;
}

.nosotros-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.nosotros-stats .stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(3, 188, 137, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(3, 188, 137, 0.3);
}

.nosotros-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #03bc89;
  font-family: 'Montserrat', sans-serif;
}

.nosotros-stats .stat-label {
  display: block;
  font-size: 0.9rem;
  color: #666666;
  margin-top: 10px;
}

.nosotros-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  color: #03bc89;
  font-weight: bold;
  font-size: 1.2rem;
}

.feature-text {
  color: #333333;
  font-weight: 600;
}

.nosotros-image {
  position: relative;
}

.nosotros-image .image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(3, 188, 137, 0.3);
}

.nosotros-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.nosotros-image .image-container:hover .nosotros-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 188, 137, 0.2) 0%, transparent 100%);
  pointer-events: none;
}

/* ----- ABOUT SECTION (Preview) ----- */
.about-preview {
  background: #FFFFFF;
  color: #000000;
  position: relative;
}

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

.about-text h2 {
  margin-bottom: 20px;
  color: #000000;
}

.about-text p {
  color: #333333;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(3, 188, 137, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(3, 188, 137, 0.3);
  transition: var(--transition-base);
}

.stat-item:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-glow-sm);
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #03bc89;
  -webkit-text-fill-color: #03bc89;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 188, 137, 0.1), transparent);
  border-radius: var(--border-radius-lg);
}

/* ═══════════════════════════════════════════════════════
   SECCIÓN COBERTURA - FONDO OSCURO + TEXTO BLANCO
   ═══════════════════════════════════════════════════════ */

.cobertura-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #FFFFFF;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cobertura-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(3, 188, 137, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 188, 137, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}

/* Section Tag */
.section-tag {
  display: inline-block;
  background: rgba(3, 188, 137, 0.1);
  color: #03bc89;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border: 2px solid rgba(3, 188, 137, 0.3);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Texas Map Premium */
.texas-map-container-premium {
  max-width: 950px;
  margin: 60px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 2px solid rgba(3, 188, 137, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.texas-shape {
  transition: all 0.5s ease;
  cursor: pointer;
}

.texas-map-interactive:hover .texas-shape {
  stroke: #04d99e;
  stroke-width: 4;
}

.animated-line {
  stroke-dasharray: 10;
  animation: dash 3s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -100; }
}

.city-marker-group {
  cursor: pointer;
  transition: all 0.3s ease;
}

.marker-pulse {
  animation: pulseMarker 2s ease-in-out infinite;
}

@keyframes pulseMarker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.marker-ring {
  animation: ringExpand 2s ease-out infinite;
}

@keyframes ringExpand {
  0% { r: 8; opacity: 1; }
  100% { r: 15; opacity: 0; }
}

.city-label-svg {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  fill: #000000;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.city-marker-group:hover .city-label-svg {
  opacity: 1;
  font-weight: 700;
  fill: #03bc89;
}

.map-legend-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(3, 188, 137, 0.1);
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.legend-pulse-dot {
  width: 12px;
  height: 12px;
  background: #03bc89;
  border-radius: 50%;
  animation: pulseMarker 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(3, 188, 137, 0.5);
}

.stat-badge {
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(3, 188, 137, 0.3);
}

.texas-map-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 2px solid rgba(3, 188, 137, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.texas-map {
  width: 100%;
  height: auto;
  display: block;
}

.texas-shape {
  transition: all 0.5s ease;
  cursor: pointer;
}

.texas-map:hover .texas-shape {
  fill: rgba(3, 188, 137, 0.25);
  stroke: #04d99e;
  stroke-width: 4;
  filter: drop-shadow(0 0 30px rgba(3, 188, 137, 0.6));
}

.city-marker {
  cursor: pointer;
  transition: all 0.3s ease;
}

.city-marker:hover .pulse-dot {
  fill: #04d99e;
  r: 10;
}

.city-marker:hover .city-label {
  fill: #04d99e;
  font-weight: 700;
}

.pulse-dot {
  animation: pulseDot 2s ease-in-out infinite;
}

.pulse-ring {
  animation: pulseRing 2s ease-out infinite;
}

.city-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  fill: #FFFFFF;
  opacity: 0.9;
  transition: all 0.3s ease;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

@keyframes pulseRing {
  0% { opacity: 1; r: 12; }
  100% { opacity: 0; r: 20; }
}

.map-legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(3, 188, 137, 0.1);
  border-radius: 15px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #E0E0E0;
}

.legend-dot {
  width: 12px;
  height: 12px;
  background: #03bc89;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(3, 188, 137, 0.5);
}

.legend-stats .stat-badge {
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(3, 188, 137, 0.4);
}

/* ═══════════════════════════════════════════════════════
   TARJETAS DE CIUDADES CON IMÁGENES (DARK THEME)
   ═══════════════════════════════════════════════════════ */

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 60px auto;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.city-card {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(3, 188, 137, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.city-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #03bc89;
  box-shadow: 0 20px 50px rgba(3, 188, 137, 0.4);
}

.city-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: #FFFFFF;
}

.city-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.city-clients {
  font-size: 1.1rem;
  color: #03bc89;
  font-weight: 700;
  margin-bottom: 8px;
}

.city-desc {
  font-size: 0.95rem;
  color: #E0E0E0;
  margin-bottom: 15px;
  line-height: 1.5;
}

.city-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(3, 188, 137, 0.2);
  color: #03bc89;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(3, 188, 137, 0.4);
}

/* ═══════════════════════════════════════════════════════
   BOTÓN PREMIUM (COBERTURA)
   ═══════════════════════════════════════════════════════ */

.btn-premium {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(3, 188, 137, 0.4);
  position: relative;
  z-index: 2;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(3, 188, 137, 0.6);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - TABLET (COBERTURA)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .texas-map-container {
    padding: 30px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - MÓVIL (COBERTURA)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .cobertura-section {
    padding: 60px 0;
  }
  
  .cobertura-section .section-title {
    font-size: 2rem;
  }
  
  .cities-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 0 15px !important;
  }
  
  .city-card {
    height: 280px !important;
    margin-bottom: 10px !important;
  }
  
  .city-card-content {
    padding: 20px !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%) !important;
  }
  
  .city-card h3 {
    font-size: 1.5rem !important;
    margin-bottom: 8px !important;
  }
  
  .city-clients {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }
  
  .city-desc {
    font-size: 0.9rem !important;
    margin-bottom: 12px !important;
  }
  
  .city-features {
    gap: 8px !important;
  }
  
  .feature-tag {
    padding: 5px 10px !important;
    font-size: 0.8rem !important;
  }
  
  .texas-map-container {
    padding: 20px;
  }
  
  .city-label {
    font-size: 11px;
  }
  
  /* Sobre Nosotros - Fondo negro en móvil */
  #nosotros,
  .nosotros-section,
  .somos-section {
    background: #000000 !important;
    color: #FFFFFF !important;
  }
  
  #nosotros h2,
  #nosotros h3,
  #nosotros h4,
  #nosotros .section-title {
    color: #FFFFFF !important;
  }
  
  #nosotros p {
    color: #E0E0E0 !important;
  }
  
  #nosotros .stat-item {
    background: rgba(3, 188, 137, 0.1) !important;
    border-color: rgba(3, 188, 137, 0.3) !important;
  }
  
  #nosotros .stat-number {
    color: #03bc89 !important;
  }
  
  #nosotros .stat-label {
    color: #B0B0B0 !important;
  }
  
  #nosotros .feature-item {
    color: #FFFFFF !important;
  }
}

/* ═══════════════════════════════════════════════════════
   ANIMACIONES DE ENTRADA (COBERTURA)
   ═══════════════════════════════════════════════════════ */

.city-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.city-card:nth-child(1) { animation-delay: 0.1s; }
.city-card:nth-child(2) { animation-delay: 0.2s; }
.city-card:nth-child(3) { animation-delay: 0.3s; }
.city-card:nth-child(4) { animation-delay: 0.4s; }
.city-card:nth-child(5) { animation-delay: 0.5s; }
.city-card:nth-child(6) { animation-delay: 0.6s; }

/* ----- TESTIMONIALS SECTION ----- */
.testimonials {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}

.testimonials-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial-card {
  width: 100%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(3, 188, 137, 0.3);
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.testimonial-card:hover {
  border-color: rgba(3, 188, 137, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(3, 188, 137, 0.2);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #E0E0E0;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: #03bc89;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #999999;
  margin-top: 5px;
}

/* Slider controls */
.testimonial-slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(3, 188, 137, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #03bc89;
  width: 30px;
  border-radius: 6px;
}

.testimonial-stars {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--primary-green);
  display: block;
  margin-bottom: -10px;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-green);
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.testimonial-city {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin: 0;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(3, 188, 137, 0.2);
  cursor: pointer;
  transition: var(--transition-base);
}

.testimonial-dot.active {
  background: var(--primary-green);
  box-shadow: var(--shadow-glow-sm);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(3, 188, 137, 0.1);
  border: 1px solid rgba(3, 188, 137, 0.2);
  color: var(--primary-green);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-base);
  z-index: 2;
}

.testimonial-nav:hover {
  background: var(--primary-green);
  color: var(--dark-bg);
}

.testimonial-nav.prev {
  left: -60px;
}

.testimonial-nav.next {
  right: -60px;
}

/* ----- FAQ SECTION (Preview) ----- */
.faq-preview {
  background: var(--dark-bg);
}

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

.faq-item {
  background: var(--dark-bg-secondary);
  border: 1px solid rgba(3, 188, 137, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(3, 188, 137, 0.3);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-white);
  font-size: 1.05rem;
  transition: var(--transition-base);
}

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

.faq-question .icon {
  font-size: 1.2rem;
  transition: var(--transition-base);
  color: var(--primary-green);
}

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

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

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

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

/* ----- CONTACTO SECTION ----- */
.contacto-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  color: #000000;
  padding: 100px 0;
  position: relative;
}

.contacto-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.contacto-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-icon-large {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(3, 188, 137, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

.phone-icon-large .icon {
  font-size: 80px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.contacto-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contacto-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #03bc89;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(3, 188, 137, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.contact-link {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #03bc89;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #029a6f;
}

.contact-note {
  font-size: 0.9rem;
  color: #666666;
}

.contact-highlight {
  font-size: 1.3rem;
  font-weight: 700;
  color: #03bc89;
  margin-bottom: 5px;
}

.contacto-image {
  width: 100%;
}

.contacto-image .image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(3, 188, 137, 0.3);
}

.contacto-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.contacto-image .image-container:hover .contacto-img {
  transform: scale(1.05);
}

.image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(3, 188, 137, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contacto-acciones {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp-large,
.btn-phone-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-large {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
}

.btn-whatsapp-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-phone-large {
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
}

.btn-phone-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(3, 188, 137, 0.4);
}

/* ----- CONTACT SECTION (Preview) ----- */
.contact-preview {
  background: #F8F9FA;
  color: #000000;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  padding: 30px;
  background: var(--dark-bg);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(3, 188, 137, 0.1);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(3, 188, 137, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

.contact-form {
  padding: 30px;
  background: var(--dark-bg);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(3, 188, 137, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  color: #ff4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ff4444;
}

.form-group.error .form-error {
  display: block;
}

.form-success {
  text-align: center;
  padding: 40px;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success .icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-gray);
}

/* ----- FOOTER ----- */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(3, 188, 137, 0.1);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-gray);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer h4 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-gray);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(3, 188, 137, 0.1);
  border: 1px solid rgba(3, 188, 137, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  transition: var(--transition-base);
}

.social-icon:hover {
  background: var(--primary-green);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.footer-newsletter {
  display: flex;
  gap: 8px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: var(--dark-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--text-white);
  font-size: 0.9rem;
}

.footer-newsletter input:focus {
  border-color: var(--primary-green);
}

.footer-newsletter button {
  padding: 12px 20px;
  background: var(--gradient-main);
  color: var(--dark-bg);
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  transition: var(--transition-base);
}

.footer-newsletter button:hover {
  box-shadow: var(--shadow-glow-sm);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-gray);
  transition: var(--transition-base);
}

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

/* ----- WHATSAPP FLOATING BUTTON ----- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition-base);
  animation: whatsappPulse 2s infinite;
}

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

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-bg);
  color: var(--text-white);
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 75px;
}

/* ----- PAGE HERO (secondary pages) ----- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(3, 188, 137, 0.05) 0%, transparent 50%);
}

.page-hero h1 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ----- BACK TO TOP ----- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 998;
  width: 48px;
  height: 48px;
  background: var(--primary-green);
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-glow);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(3, 188, 137, 0.6);
}

/* ----- UTILITY CLASSES ----- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════
   HEADER PREMIUM - SYNERGY LIGHT
   Diseño elegante con fondo negro y colores corporativos
   ═══════════════════════════════════════════════════════ */

.header-premium {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(3, 188, 137, 0.2);
  animation: slideDown 0.5s ease;
}

.header-premium.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 30px rgba(3, 188, 137, 0.3);
  border-bottom: 2px solid #03bc89;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* ═══════════════════════════════════════════════════════
   LOGO GRANDE
   ═══════════════════════════════════════════════════════ */

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-premium {
  width: 200px;
  height: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(3, 188, 137, 0.3));
}

.logo-premium:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(3, 188, 137, 0.6));
}

/* ═══════════════════════════════════════════════════════
   NAVEGACIÓN PREMIUM
   ═══════════════════════════════════════════════════════ */

.nav-premium {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #03bc89;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px #03bc89;
}

.nav-link:hover {
  color: #03bc89;
  text-shadow: 0 0 10px rgba(3, 188, 137, 0.5);
}

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

.nav-link.active {
  color: #03bc89;
}

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

/* ═══════════════════════════════════════════════════════
   SELECTOR DE IDIOMA
   ═══════════════════════════════════════════════════════ */

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  border-color: #03bc89;
  color: #03bc89;
  box-shadow: 0 0 10px rgba(3, 188, 137, 0.3);
}

.lang-btn.active {
  background: #03bc89;
  border-color: #03bc89;
  color: #000000;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════
   BOTÓN WHATSAPP HEADER - SOLO ICONO PREMIUM
   ═══════════════════════════════════════════════════════ */

.cta-button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 20px rgba(3, 188, 137, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  animation: glowButton 3s ease-in-out infinite;
}

/* Capa de brillo superior (glossy effect) */
.cta-button-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

/* Icono WhatsApp SVG */
.whatsapp-icon {
  width: 26px;
  height: 26px;
  color: #FFFFFF;
  fill: #FFFFFF;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Hover effects */
.cta-button-whatsapp:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 
    0 0 30px rgba(3, 188, 137, 0.7),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #04d99e 0%, #03bc89 100%);
}

.cta-button-whatsapp:hover .whatsapp-icon {
  transform: scale(1.15) rotate(-5deg);
}

.cta-button-whatsapp:active {
  transform: translateY(-1px) scale(1.05);
}

/* ═══════════════════════════════════════════════════════
   LÍNEA DECORATIVA INFERIOR
   ═══════════════════════════════════════════════════════ */

.header-accent-line {
  height: 2px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    #03bc89 20%,
    #03bc89 80%, 
    transparent 100%
  );
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   MENÚ HAMBURGUESA PREMIUM
   ═══════════════════════════════════════════════════════ */

.hamburger-premium {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #03bc89;
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(3, 188, 137, 0.5);
}

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

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

.hamburger-premium.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - TABLET (1024px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .header-container {
    padding: 15px 20px;
    gap: 20px;
  }
  
  .logo-premium {
    width: 160px;
  }
  
  .nav-list {
    gap: 25px;
  }
  
  .nav-link {
    font-size: 13px;
  }
  
  .cta-button-whatsapp {
    width: 45px;
    height: 45px;
  }
  
  .whatsapp-icon {
    width: 22px;
    height: 22px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - MOBILE (768px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hamburger-premium {
    display: flex;
  }
  
  .nav-premium {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #000000;
    border-left: 3px solid #03bc89;
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(3, 188, 137, 0.3);
  }
  
  .nav-premium.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 25px;
  }
  
  .nav-link {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(3, 188, 137, 0.2);
  }
  
  .language-selector {
    display: none;
  }
  
  .cta-button-whatsapp {
    width: 42px;
    height: 42px;
  }
  
  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
  
  .logo-premium {
    width: 140px;
  }
}

/* ═══════════════════════════════════════════════════════
   ANIMACIONES
   ═══════════════════════════════════════════════════════ */

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes glowButton {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(3, 188, 137, 0.4),
      inset 0 2px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(3, 188, 137, 0.7),
      inset 0 2px 0 rgba(255, 255, 255, 0.4);
  }
}

/* ═══════════════════════════════════════════════════════
   SECCIÓN 3 PASOS - TAMAÑOS REDUCIDOS Y COHERENTES
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   SECCIÓN 3 PASOS - LAYOUT VERTICAL
   ═══════════════════════════════════════════════════════ */

.pasos-section {
  background: #000000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Efectos de luz sutiles */
.pasos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 30%, rgba(3, 188, 137, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(3, 188, 137, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.pasos-section .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  text-align: center;
}

.pasos-section .section-tag {
  display: inline-block;
  background: rgba(3, 188, 137, 0.1);
  color: #03bc89;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border: 2px solid rgba(3, 188, 137, 0.3);
}

.pasos-section .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.pasos-section .section-title .text-green {
  color: #03bc89;
  text-shadow: 0 0 20px rgba(3, 188, 137, 0.5);
}

.pasos-section .section-subtitle {
  font-size: 1rem;
  color: #B0B0B0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   CONTENEDOR VERTICAL - 1 COLUMNA
   ═══════════════════════════════════════════════════════ */

.pasos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   CARD DE CADA PASO - TAMAÑO COMPACTO
   ═══════════════════════════════════════════════════════ */

.paso-card {
  width: 100%;
  max-width: 450px;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(3, 188, 137, 0.25);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 30px rgba(3, 188, 137, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.paso-card:hover {
  transform: translateY(-5px);
  border-color: rgba(3, 188, 137, 0.6);
  box-shadow: 
    0 15px 40px rgba(3, 188, 137, 0.25),
    inset 0 0 40px rgba(3, 188, 137, 0.1);
}

/* Paso 3 destacado */
.paso-card.featured {
  background: linear-gradient(135deg, rgba(3, 188, 137, 0.12) 0%, rgba(4, 217, 158, 0.06) 100%);
  border-color: #03bc89;
  border-width: 3px;
  box-shadow: 
    0 15px 40px rgba(3, 188, 137, 0.35),
    inset 0 0 40px rgba(3, 188, 137, 0.15);
}

.paso-card.featured::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(10px);
}

/* Badge "¡LISTO!" */
.paso-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ═══════════════════════════════════════════════════════
   NÚMERO DE PASO
   ═══════════════════════════════════════════════════════ */

.paso-number {
  position: relative;
  width: 55px;
  height: 55px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paso-number .number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #03bc89;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px rgba(3, 188, 137, 0.6);
}

.number-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(3, 188, 137, 0.4);
  border-radius: 50%;
  animation: pulseRing 2.5s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.4; }
}

/* ═══════════════════════════════════════════════════════
   ICONO DEL PASO
   ═══════════════════════════════════════════════════════ */

.paso-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(3, 188, 137, 0.25) 0%, rgba(4, 217, 158, 0.12) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(3, 188, 137, 0.5);
  box-shadow: 0 0 30px rgba(3, 188, 137, 0.35);
  transition: all 0.4s ease;
}

.paso-card:hover .paso-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 40px rgba(3, 188, 137, 0.55);
}

.paso-icon svg {
  width: 35px;
  height: 35px;
  color: #03bc89;
  stroke: #03bc89;
}

/* ═══════════════════════════════════════════════════════
   TÍTULO Y DESCRIPCIÓN
   ═══════════════════════════════════════════════════════ */

.paso-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}

.paso-description {
  font-size: 0.9rem;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ═══════════════════════════════════════════════════════
   INPUT DE CÓDIGO POSTAL (PASO 1)
   ═══════════════════════════════════════════════════════ */

.zip-verification {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
}

.zip-input {
  flex: 1;
  padding: 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(3, 188, 137, 0.35);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.zip-input:focus {
  outline: none;
  border-color: #03bc89;
  box-shadow: 0 0 20px rgba(3, 188, 137, 0.4);
}

.zip-input::placeholder {
  color: #666666;
  font-weight: 400;
  font-size: 14px;
}

.zip-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(3, 188, 137, 0.4);
  white-space: nowrap;
}

.zip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(3, 188, 137, 0.6);
}

.paso-status {
  margin-top: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 20px;
  width: 100%;
}

.paso-status.success { color: #03bc89; }
.paso-status.error { color: #FF4444; }

/* ═══════════════════════════════════════════════════════
   LISTA DE BENEFICIOS (PASO 2)
   ═══════════════════════════════════════════════════════ */

.beneficios-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  text-align: left;
  width: 100%;
}

.beneficios-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(3, 188, 137, 0.15);
  color: #E0E0E0;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.beneficios-list li:last-child { border-bottom: none; }

.beneficios-list li:hover {
  padding-left: 8px;
  color: #FFFFFF;
  background: rgba(3, 188, 137, 0.05);
  border-radius: 6px;
}

.beneficios-list .check {
  color: #03bc89;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   BOTÓN CTA (PASO 3)
   ═══════════════════════════════════════════════════════ */

.paso-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 25px rgba(3, 188, 137, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  margin: 10px 0;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  justify-content: center;
}

.paso-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

.paso-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(3, 188, 137, 0.7);
}

.cta-icon { font-size: 16px; }

.paso-garantia {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #03bc89;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   FLECHAS CONECTORAS VERTICALES
   ═══════════════════════════════════════════════════════ */

.paso-arrow-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  position: relative;
}

.arrow-line-vertical {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #03bc89 0%, #04d99e 100%);
  transform: translateX(-50%);
  opacity: 0.6;
  border-radius: 2px;
}

.arrow-line-vertical::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #03bc89 0%, #04d99e 100%);
  animation: flowLineVertical 2s linear infinite;
}

@keyframes flowLineVertical {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.arrow-icon-vertical {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(3, 188, 137, 0.6);
  z-index: 2;
  animation: pulseArrow 2s ease-in-out infinite;
}

@keyframes pulseArrow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.arrow-icon-vertical svg {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  stroke: #FFFFFF;
}

/* ═══════════════════════════════════════════════════════
   CONTADOR DE CLIENTES
   ═══════════════════════════════════════════════════════ */

.clientes-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  padding: 25px 40px;
  background: rgba(3, 188, 137, 0.08);
  border: 2px solid rgba(3, 188, 137, 0.4);
  border-radius: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(3, 188, 137, 0.2);
}

.counter-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(3, 188, 137, 0.5);
  flex-shrink: 0;
}

.counter-icon svg {
  width: 26px;
  height: 26px;
  color: #FFFFFF;
  stroke: #FFFFFF;
}

.counter-text {
  display: flex;
  align-items: baseline;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #03bc89;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 20px rgba(3, 188, 137, 0.6);
  line-height: 1;
}

.counter-suffix {
  font-size: 1.8rem;
  font-weight: 900;
  color: #03bc89;
  margin-left: 5px;
}

.counter-label {
  font-size: 0.95rem;
  color: #B0B0B0;
  line-height: 1.5;
}

.counter-label .text-green {
  color: #03bc89;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - TABLET (1024px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pasos-section .section-title {
    font-size: 2rem;
  }
  
  .paso-card {
    max-width: 400px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - MÓVIL (768px)
   ══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .pasos-section {
    padding: 60px 0;
  }
  
  .pasos-section .section-header {
    margin-bottom: 40px;
  }
  
  .pasos-section .section-title {
    font-size: 1.7rem;
  }
  
  .pasos-container {
    padding: 0 15px;
  }
  
  .paso-card {
    max-width: 100%;
    padding: 30px 20px;
    min-height: 250px;
  }
  
  .paso-title { font-size: 1.2rem; }
  .paso-description { font-size: 0.85rem; }
  
  .zip-verification { flex-direction: column; }
  .zip-btn { justify-content: center; }
  
  .clientes-counter {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    gap: 15px;
  }
  
  .counter-number { font-size: 2.2rem; }
  .counter-label { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════════════════
   ANIMACIONES DE ENTRADA
   ═══════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.paso-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.paso-card:nth-child(1) { animation-delay: 0.1s; }
.paso-card:nth-child(3) { animation-delay: 0.3s; }
.paso-card:nth-child(5) { animation-delay: 0.5s; }

.paso-arrow-vertical {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.paso-arrow-vertical:nth-child(2) { animation-delay: 0.2s; }
.paso-arrow-vertical:nth-child(4) { animation-delay: 0.4s; }

.clientes-counter {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION - LAYOUT COMPACTO (NUEVO)
   ═══════════════════════════════════════════════════════ */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px !important;
  margin-bottom: 40px;
}

.hero-text-container {
  flex: 0 0 auto;
  max-width: 520px;
  width: 100%;
  text-align: left;
}

/* Tamaños de texto optimizados */
@media (min-width: 1025px) {
  .hero-title-1 {
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
    margin-bottom: 5px !important;
  }
  
  .hero-title-2 {
    font-size: 2.8rem !important;
    line-height: 1.05 !important;
    margin: 8px 0 !important;
  }
  
  .hero-subtitle-left {
    font-size: 1.05rem !important;
    margin: 12px 0 8px !important;
  }
  
  .hero-subtitle-2,
  .hero-subtitle-3 {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
    margin: 6px 0 !important;
  }
  
  .hero-title-electrica {
    font-size: 3.2rem !important;
    line-height: 1 !important;
    margin: 12px 0 !important;
  }
  
  .hero-footer {
    font-size: 1.05rem !important;
    margin-top: 15px !important;
  }
}

/* Glass Card más compacta */
.hero-glass-card {
  flex: 0 0 auto;
  width: 380px;
  animation: fadeInScale 1.2s ease 1.3s both;
}

.glass-card-inner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(3, 188, 137, 0.3);
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

.hero-glass-image {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* Responsive Desktop Grande */
@media (min-width: 1440px) {
  .hero-text-container {
    max-width: 580px;
  }
  
  .hero-glass-card {
    width: 420px;
  }
  
  .hero-glass-image {
    max-width: 380px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .hero-text-container {
    text-align: center;
    max-width: 100% !important;
  }
  
  .hero-glass-card {
    width: 100%;
    max-width: 400px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-glass-image {
    max-width: 280px;
  }
}

/* Prevenir saltos con guiones */
.hero-title-1,
.hero-title-2,
.hero-subtitle-2,
.hero-subtitle-3,
.hero-title-electrica {
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;
}

/* ═══════════════════════════════════════════════════════
   HERO - LAYOUT CORRECTO (SOLUCIÓN DEFINITIVA)
   ═══════════════════════════════════════════════════════ */

/* Reset de estilos anteriores */
.hero-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  position: relative !important;
}

.hero-text-container {
  flex: 1 !important;
  max-width: 600px !important;
  text-align: left !important;
  position: static !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-glass-card {
  flex: 0 0 auto !important;
  width: 420px !important;
  position: static !important;
  transform: none !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════
   TEXTOS MÁS GRANDES EN PC (no exagerados)
   ═══════════════════════════════════════════════════════ */

@media (min-width: 1025px) {
  .hero-title-1 {
    font-size: 2.0rem !important;
    line-height: 1.1 !important;
  }
  
  .hero-title-2 {
    font-size: 3.5rem !important;
    line-height: 1.05 !important;
  }
  
  .hero-subtitle-left {
    font-size: 1.2rem !important;
    margin: 15px 0 10px !important;
  }
  
  .hero-subtitle-2,
  .hero-subtitle-3 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin: 8px 0 !important;
  }
  
  .hero-title-electrica {
    font-size: 4rem !important;
    line-height: 1 !important;
    margin: 15px 0 !important;
  }
  
  .hero-footer {
    font-size: 1.2rem !important;
    margin-top: 20px !important;
  }
}

/* Pantallas muy grandes */
@media (min-width: 1440px) {
  .hero-title-1 { font-size: 3.2rem !important; }
  .hero-title-2 { font-size: 4rem !important; }
  .hero-subtitle-2,
  .hero-subtitle-3 { font-size: 2rem !important; }
  .hero-title-electrica { font-size: 4.5rem !important; }
}

/* Prevenir saltos con guiones */
.hero-title-1,
.hero-title-2,
.hero-subtitle-2,
.hero-subtitle-3,
.hero-title-electrica {
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
}

/* ═══════════════════════════════════════════════════════
   MÓVIL: REPARAR - IMAGEN DEBAJO, TEXTO CENTRADO
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column !important;
    gap: 25px !important;
    padding: 0 20px !important;
  }
  
  /* Texto PRIMERO (arriba) y centrado */
  .hero-text-container {
    order: 1 !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  /* Imagen DESPUÉS (abajo) */
  .hero-glass-card {
    order: 2 !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  
  .hero-glass-image {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .glass-card-inner {
    padding: 20px !important;
  }
  
  /* Textos móviles */
  .hero-title-1 { font-size: 2rem !important; }
  .hero-title-2 { font-size: 2.8rem !important; }
  .hero-subtitle-left { font-size: 1rem !important; text-align: center !important; }
  .hero-subtitle-2,
  .hero-subtitle-3 { font-size: 1.4rem !important; text-align: center !important; }
  .hero-title-electrica { font-size: 3rem !important; }
  .hero-footer { font-size: 1rem !important; text-align: center !important; }
}

/* ═══════════════════════════════════════════════════════
   BOTONES CTA
   ═══════════════════════════════════════════════════════ */

.hero-cta-buttons {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  position: relative !important;
  z-index: 2 !important;
  padding: 0 20px !important;
}

@media (max-width: 768px) {
  .hero-cta-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .btn-hero-premium {
    width: 100% !important;
    max-width: 300px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO - IMAGEN GRANDE + TEXTO SUPERPUESTO (PC)
   ═══════════════════════════════════════════════════════ */

@media (min-width: 1025px) {
  /* Centrar todo el contenido */
  .hero-content {
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
    position: relative !important;
    padding: 0 !important;
  }
  
  /* Texto superpuesto sobre la imagen */
  .hero-text-container {
    position: absolute !important;
    left: 30% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 3 !important;
    max-width: 550px !important;
    text-align: left !important;
  }
  
 /* Imagen más grande */
.hero-glass-card {
  width: 550px !important;
  max-width: 550px !important;
  margin-left: 400px !important;  /* ← AGREGA ESTA LÍNEA AQUÍ */
  z-index: 1 !important;
}

.glass-card-inner {
  padding: 30px !important;
}

.hero-glass-image {
  width: 100% !important;
  max-width: 540px !important;
}

/* Pantallas muy grandes */
@media (min-width: 1440px) {
  .hero-glass-card {
    width: 700px !important;
  }
  
  .hero-glass-image {
    max-width: 640px !important;
  }
  
  .hero-text-container {
    transform: translate(-55%, -50%) !important;
  }
}

/* ══════════════════════════════════════════════════════
   MÓVIL: SOLO REDUCIR "¿NECESITAS ELECTRICIDAD?"
   NO TOCAR NADA MÁS
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-title-1 {
    font-size: 1.3rem !important;
  }
  
  .hero-title-2 {
    font-size: 1.8rem !important;
  }
}

/* ═══════════════════════════════════════════════════════
   SECCIÓN SOBRE NOSOTROS - FONDO NEGRO
   ═══════════════════════════════════════════════════════ */

#nosotros,
.nosotros-section,
.somos-section,
section[id*="nosotros"] {
  background: #000000 !important;
  color: #FFFFFF !important;
}

/* Títulos principales en blanco */
#nosotros h2,
#nosotros h3,
#nosotros h4,
#nosotros .section-title,
#nosotros .section-subtitle {
  color: #FFFFFF !important;
}

/* Texto en verde corporativo */
#nosotros .text-green,
#nosotros .section-title span,
#nosotros h3.text-green {
  color: #03bc89 !important;
}

/* Párrafos de texto */
#nosotros p {
  color: #E0E0E0 !important;
}

/* Tarjetas de estadísticas */
#nosotros .stat-item,
#nosotros .stat-box {
  background: rgba(3, 188, 137, 0.1) !important;
  border: 2px solid rgba(3, 188, 137, 0.3) !important;
  color: #FFFFFF !important;
}

#nosotros .stat-number {
  color: #03bc89 !important;
}

#nosotros .stat-label {
  color: #B0B0B0 !important;
}

/* Lista de características */
#nosotros .feature-item,
#nosotros .nosotros-features li {
  color: #FFFFFF !important;
}

#nosotros .feature-icon,
#nosotros .check-icon {
  color: #03bc89 !important;
}

/* Tag de sección */
#nosotros .section-tag {
  background: rgba(3, 188, 137, 0.1) !important;
  color: #03bc89 !important;
  border-color: rgba(3, 188, 137, 0.3) !important;
}

/* Imagen */
#nosotros .nosotros-image img,
#nosotros .image-container img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(3, 188, 137, 0.3);
}

/* ═══════════════════════════════════════════════════════
   MAPA DE TEXAS CON REGIONES - ANIMACIONES
   ═══════════════════════════════════════════════════════ */

.texas-regions-map {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* Regiones con animación */
.region-texas {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: regionFloat 4s ease-in-out infinite;
}

.region-texas:nth-child(2) { animation-delay: 0s; }
.region-texas:nth-child(3) { animation-delay: 0.5s; }
.region-texas:nth-child(4) { animation-delay: 1s; }
.region-texas:nth-child(5) { animation-delay: 1.5s; }
.region-texas:nth-child(6) { animation-delay: 2s; }
.region-texas:nth-child(7) { animation-delay: 2.5s; }
.region-texas:nth-child(8) { animation-delay: 3s; }

.region-texas:hover {
  fill: rgba(3, 188, 137, 0.7) !important;
  stroke: #04d99e !important;
  stroke-width: 3.5 !important;
  filter: drop-shadow(0 0 15px rgba(3, 188, 137, 0.8));
  transform: scale(1.01);
}

@keyframes regionFloat {
  0%, 100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-2px);
  }
}

/* Marcadores de ciudades */
.city-marker {
  cursor: pointer;
  transition: all 0.3s ease;
}

.city-marker:hover .pulse-dot {
  fill: #04d99e;
  r: 7;
}

.city-marker:hover .city-label {
  fill: #04d99e;
  font-weight: 700;
  font-size: 15px;
}

.pulse-dot {
  animation: pulseDot 2s ease-in-out infinite;
}

.pulse-ring {
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.4);
  }
}

@keyframes pulseRing {
  0% {
    opacity: 1;
    r: 8;
  }
  100% {
    opacity: 0;
    r: 15;
  }
}

.city-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  fill: #FFFFFF;
  opacity: 0.9;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.region-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  fill: #FFFFFF;
  opacity: 0.7;
  pointer-events: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.county-lines {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.texas-regions-map:hover .county-lines {
  opacity: 0.5;
}

/* Responsive mapa regiones */
@media (max-width: 768px) {
  .texas-regions-map {
    max-width: 100%;
    height: auto;
  }
  
  .city-label,
  .region-name {
    font-size: 10px;
  }
  
  .pulse-dot {
    r: 4;
  }
  
  .pulse-ring {
    r: 6;
  }
}

/* ═══════════════════════════════════════════════════════
   MAPA INTERACTIVO DE TEXAS - HOVER EN ZONAS
   ═══════════════════════════════════════════════════════ */

.texas-map-interactive-wrapper {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(3, 188, 137, 0.3);
}

/* Imagen base del mapa */
.texas-map-base {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}

.texas-map-interactive-wrapper:hover .texas-map-base {
  filter: brightness(0.85);
}

/* Capa SVG superpuesta */
.texas-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Zonas interactivas */
.zone {
  pointer-events: all;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  fill: rgba(3, 188, 137, 0);
  stroke: rgba(3, 188, 137, 0);
}

/* Efecto hover en cada zona */
.zone:hover {
  fill: rgba(3, 188, 137, 0.35) !important;
  stroke: #03bc89 !important;
  stroke-width: 3 !important;
  filter: drop-shadow(0 0 15px rgba(3, 188, 137, 0.8));
  animation: zonePulse 1.5s ease-in-out infinite;
}

@keyframes zonePulse {
  0%, 100% {
    fill: rgba(3, 188, 137, 0.35);
  }
  50% {
    fill: rgba(3, 188, 137, 0.5);
  }
}

/* Colores específicos por zona en hover */
.zone-lpl:hover { fill: rgba(59, 130, 246, 0.4) !important; }
.zone-tnmp:hover { fill: rgba(34, 197, 94, 0.4) !important; }
.zone-aepn:hover { fill: rgba(59, 130, 246, 0.4) !important; }
.zone-oncor:hover { fill: rgba(144, 238, 144, 0.4) !important; }
.zone-centerpoint:hover { fill: rgba(34, 197, 94, 0.5) !important; }
.zone-aepc:hover { fill: rgba(74, 222, 128, 0.4) !important; }

/* ══════════════════════════════════════════════════════
   TOOLTIP PERSONALIZADO
   ═══════════════════════════════════════════════════════ */

.map-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid #03bc89;
  border-radius: 12px;
  padding: 15px 20px;
  color: #FFFFFF;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(3, 188, 137, 0.4);
  max-width: 280px;
}

.map-tooltip.active {
  opacity: 1;
  transform: translateY(0);
}

.tooltip-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #03bc89;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(3, 188, 137, 0.5);
}

.tooltip-info {
  font-size: 13px;
  color: #E0E0E0;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   MARCADORES DE CIUDADES (opcional)
   ══════════════════════════════════════════════════════ */

.city-marker-map {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #03bc89;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 15px rgba(3, 188, 137, 0.8);
  animation: cityPulse 2s ease-in-out infinite;
  cursor: pointer;
  z-index: 5;
}

@keyframes cityPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(3, 188, 137, 0.8);
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(3, 188, 137, 1);
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .texas-map-interactive-wrapper {
    margin: 30px 15px;
  }
  
  .map-tooltip {
    padding: 10px 15px;
    max-width: 220px;
  }
  
  .tooltip-title {
    font-size: 15px;
  }
  
  .tooltip-info {
    font-size: 11px;
  }
}

/* ═══════════════════════════════════════════════════════
   SECCIÓN TESTIMONIOS - SLIDER DE 3 EN 3
   ═══════════════════════════════════════════════════════ */

.testimonios-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonios-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(3, 188, 137, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(3, 188, 137, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.testimonios-section .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.testimonios-section .section-tag {
  display: inline-block;
  background: rgba(3, 188, 137, 0.1);
  color: #03bc89;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border: 2px solid rgba(3, 188, 137, 0.3);
}

.testimonios-section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.testimonios-section .section-title .text-green {
  color: #03bc89;
  text-shadow: 0 0 30px rgba(3, 188, 137, 0.5);
}

.testimonios-section .section-subtitle {
  font-size: 1.1rem;
  color: #B0B0B0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   SLIDER WRAPPER
   ═══════════════════════════════════════════════════════ */

.testimonios-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}

.testimonios-slider {
  position: relative;
  min-height: 400px;
}

.testimonios-group {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  animation: fadeIn 0.5s ease;
}

.testimonios-group.active {
  display: grid;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════
   TARJETA DE TESTIMONIO
   ═══════════════════════════════════════════════════════ */

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(3, 188, 137, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(3, 188, 137, 0.5);
  box-shadow: 0 20px 50px rgba(3, 188, 137, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* Header: Avatar + Estrellas */
.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #03bc89;
  box-shadow: 0 0 20px rgba(3, 188, 137, 0.4);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar img {
  transform: scale(1.1);
}

.testimonial-rating {
  display: flex;
  gap: 3px;
}

.testimonial-rating .star {
  color: #FFD700;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Contenido del testimonio */
.testimonial-content {
  flex-grow: 1;
  margin-bottom: 25px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #E0E0E0;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid rgba(3, 188, 137, 0.3);
}

/* Footer: Nombre y ciudad */
.testimonial-footer {
  border-top: 1px solid rgba(3, 188, 137, 0.2);
  padding-top: 20px;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #03bc89;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-location {
  font-size: 0.85rem;
  color: #B0B0B0;
}

/* ═══════════════════════════════════════════════════════
   CONTROLES DEL SLIDER
   ═══════════════════════════════════════════════════════ */

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(3, 188, 137, 0.1);
  border: 2px solid rgba(3, 188, 137, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #03bc89;
}

.slider-btn:hover {
  background: #03bc89;
  color: #FFFFFF;
  border-color: #03bc89;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(3, 188, 137, 0.5);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(3, 188, 137, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: rgba(3, 188, 137, 0.6);
  transform: scale(1.2);
}

.slider-dot.active {
  background: #03bc89;
  width: 30px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(3, 188, 137, 0.5);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - TABLET
   ═══════════════════════════════════════════════════════ */

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

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - MÓVIL
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .testimonios-section {
    padding: 60px 0;
  }
  
  .testimonios-section .section-title {
    font-size: 2rem;
  }
  
  .testimonios-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .testimonial-avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid #03bc89 !important;
    box-shadow: 0 0 15px rgba(3, 188, 137, 0.4) !important;
    flex-shrink: 0 !important;
  }
  
  .testimonial-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 769px) {
  .testimonial-avatar {
    overflow: hidden !important;
  }
  
  .testimonial-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
  }
}

/* ══════════════════════════════════════════════════════
   ANIMACIONES DE ENTRADA
   ═══════════════════════════════════════════════════════ */

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  opacity: 0;
  animation: slideInUp 0.6s ease forwards;
}

.testimonios-group.active .testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonios-group.active .testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonios-group.active .testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* ═══════════════════════════════════════════════════════
   SECCIÓN CONTÁCTANOS - DISEÑO PROFESIONAL
   ═══════════════════════════════════════════════════════ */

.contacto-section-premium {
  background: #FFFFFF;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Patrón sutil de fondo */
.contacto-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(3, 188, 137, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(3, 188, 137, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.contacto-section-premium .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
  text-align: center;
}

.contacto-section-premium .section-tag {
  display: inline-block;
  background: rgba(3, 188, 137, 0.1);
  color: #03bc89;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border: 2px solid rgba(3, 188, 137, 0.3);
}

.contacto-section-premium .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.contacto-section-premium .section-title .text-green {
  color: #03bc89;
}

.contacto-section-premium .section-subtitle {
  font-size: 1.1rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   GRID DE 2 COLUMNAS
   ═══════════════════════════════════════════════════════ */

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   COLUMNA IZQUIERDA: IMAGEN
   ═══════════════════════════════════════════════════════ */

.contacto-imagen-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacto-imagen-frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(3, 188, 137, 0.3);
  border: 3px solid rgba(3, 188, 137, 0.3);
  max-width: 500px;
  width: 100%;
}

.contacto-imagen {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.contacto-imagen-frame:hover .contacto-imagen {
  transform: scale(1.05);
}

.imagen-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 4px solid #03bc89;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   COLUMNA DERECHA: TARJETAS DE CONTACTO
   ═══════════════════════════════════════════════════════ */

.contacto-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #FFFFFF;
  border-radius: 15px;
  border: 2px solid rgba(3, 188, 137, 0.2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contacto-card:hover {
  transform: translateX(10px);
  border-color: #03bc89;
  box-shadow: 0 10px 30px rgba(3, 188, 137, 0.2);
}

.contacto-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(3, 188, 137, 0.1) 0%, rgba(4, 217, 158, 0.05) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(3, 188, 137, 0.3);
  padding: 10px;
  transition: all 0.3s ease;
}

.contacto-card:hover .contacto-card-icon {
  background: linear-gradient(135deg, rgba(3, 188, 137, 0.2) 0%, rgba(4, 217, 158, 0.1) 100%);
  border-color: #03bc89;
  transform: scale(1.05);
}

/* Imagen de icono */
.card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.contacto-card:hover .card-icon-img {
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE ICONOS
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .contacto-card-icon {
    width: 50px;
    height: 50px;
    padding: 8px;
  }
}

.contacto-card-content {
  flex-grow: 1;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #03bc89;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.card-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #03bc89;
}

.card-note {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
}

.card-highlight {
  font-size: 1.2rem;
  font-weight: 800;
  color: #03bc89;
  margin-bottom: 3px;
  font-family: 'Montserrat', sans-serif;
}

/* ══════════════════════════════════════════════════════
   BOTONES CTA
   ═══════════════════════════════════════════════════════ */

.contacto-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-cta-whatsapp,
.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-cta-phone {
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
}

.btn-cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(3, 188, 137, 0.4);
}

.btn-cta-whatsapp .btn-icon,
.btn-cta-phone .btn-icon {
  font-size: 20px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - TABLET
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .contacto-grid {
    gap: 40px;
  }
  
  .contacto-imagen-frame {
    max-width: 400px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE - MÓVIL
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .contacto-section-premium {
    padding: 60px 0;
  }
  
  .contacto-section-premium .section-title {
    font-size: 2rem;
  }
  
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contacto-imagen-frame {
    max-width: 350px;
  }
  
  .contacto-info-wrapper {
    gap: 15px !important;
  }
  
  .contacto-card {
    padding: 18px !important;
    margin-bottom: 0 !important;
  }
  
  .contacto-card:hover {
    transform: translateX(8px) !important;
    border-color: #03bc89 !important;
    box-shadow: 0 8px 25px rgba(3, 188, 137, 0.2) !important;
  }
  
  .contacto-card-icon {
    width: 45px !important;
    height: 45px !important;
    padding: 8px !important;
  }
  
  .contacto-card-icon .icon {
    font-size: 22px !important;
  }
  
  .card-title {
    font-size: 0.8rem !important;
    margin-bottom: 3px !important;
  }
  
  .card-link {
    font-size: 1rem !important;
    margin-bottom: 2px !important;
  }
  
  .card-note {
    font-size: 0.75rem !important;
  }
  
  .card-highlight {
    font-size: 1rem !important;
    margin-bottom: 2px !important;
  }
  
  .contacto-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-whatsapp,
  .btn-cta-phone {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════
   ANIMACIONES DE ENTRADA
   ═══════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contacto-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.contacto-card:nth-child(1) { animation-delay: 0.1s; }
.contacto-card:nth-child(2) { animation-delay: 0.2s; }
.contacto-card:nth-child(3) { animation-delay: 0.3s; }
.contacto-card:nth-child(4) { animation-delay: 0.4s; }

.contacto-imagen-frame {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.contacto-cta-buttons {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* ═══════════════════════════════════════════════════════
   CORRECCIÓN FORZADA - TESTIMONIOS MÓVIL
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Testimonios - Imágenes dentro del círculo */
  .testimonios-section .testimonial-avatar,
  #testimonios .testimonial-avatar,
  section[id*="testimonio"] .testimonial-avatar {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid #03bc89 !important;
    box-shadow: 0 0 15px rgba(3, 188, 137, 0.4) !important;
    flex-shrink: 0 !important;
    display: block !important;
    position: relative !important;
  }
  
  .testimonios-section .testimonial-avatar img,
  #testimonios .testimonial-avatar img,
  section[id*="testimonio"] .testimonial-avatar img {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50% !important;
    display: block !important;
  }
  
  /* Contacto - Tarjetas más juntas */
  .contacto-section-premium .contacto-info-wrapper,
  #contacto .contacto-info-wrapper,
  section[id*="contacto"] .contacto-info-wrapper {
    gap: 12px !important;
    margin-bottom: 30px !important;
  }
  
  .contacto-section-premium .contacto-card,
  #contacto .contacto-card,
  section[id*="contacto"] .contacto-card {
    padding: 15px !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
  }
  
  .contacto-section-premium .contacto-card-icon,
  #contacto .contacto-card-icon,
  section[id*="contacto"] .contacto-card-icon {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    padding: 8px !important;
  }
  
  .contacto-section-premium .contacto-card-icon img,
  #contacto .contacto-card-icon img,
  section[id*="contacto"] .contacto-card-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
  
  .contacto-section-premium .card-title,
  #contacto .card-title,
  section[id*="contacto"] .card-title {
    font-size: 0.75rem !important;
    margin-bottom: 3px !important;
    line-height: 1.2 !important;
  }
  
  .contacto-section-premium .card-link,
  #contacto .card-link,
  section[id*="contacto"] .card-link {
    font-size: 0.95rem !important;
    margin-bottom: 2px !important;
    line-height: 1.3 !important;
  }
  
  .contacto-section-premium .card-note,
  #contacto .card-note,
  section[id*="contacto"] .card-note {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin: 0 !important;
  }
  
  .contacto-section-premium .card-highlight,
  #contacto .card-highlight,
  section[id*="contacto"] .card-highlight {
    font-size: 0.95rem !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
  }
  
  /* Contacto - Hover effect */
  .contacto-section-premium .contacto-card:hover,
  #contacto .contacto-card:hover,
  section[id*="contacto"] .contacto-card:hover {
    transform: translateX(8px) !important;
    border-color: #03bc89 !important;
    box-shadow: 0 8px 25px rgba(3, 188, 137, 0.2) !important;
  }
}

/* ═══════════════════════════════════════════════════════
   PÁGINA SOBRE NOSOTROS - ESTILO PREMIUM
   ═══════════════════════════════════════════════════════ */

/* Hero con Video */
.nosotros-hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.nosotros-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(3, 188, 137, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(3, 188, 137, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.nosotros-hero-section .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  text-align: center;
}

.nosotros-hero-section .section-tag {
  display: inline-block;
  background: rgba(3, 188, 137, 0.1);
  color: #03bc89;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 2px solid rgba(3, 188, 137, 0.3);
}

.nosotros-hero-section .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.nosotros-hero-section .section-title .text-green {
  color: #03bc89;
  text-shadow: 0 0 30px rgba(3, 188, 137, 0.5);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 850px !important;
  margin: 40px auto !important;
  padding-bottom: 56.25% !important;
  height: 0 !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  border: 3px solid rgba(3, 188, 137, 0.4) !important;
  box-shadow: 
    0 0 40px rgba(3, 188, 137, 0.4),
    0 10px 60px rgba(0, 0, 0, 0.5) !important;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-container {
    max-width: 100% !important;
    margin: 30px 15px !important;
  }
}

/* Sección Historia */
.historia-section {
  background: #000000;
  padding: 100px 0;
  position: relative;
}

.historia-section .section-header {
  margin-bottom: 60px;
  text-align: center;
}

.historia-section .section-tag {
  background: rgba(3, 188, 137, 0.1);
  color: #03bc89;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border: 2px solid rgba(3, 188, 137, 0.3);
  display: inline-block;
}

.historia-section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.historia-section .section-title .text-green {
  color: #03bc89;
  text-shadow: 0 0 30px rgba(3, 188, 137, 0.5);
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.historia-content {
  position: relative;
  z-index: 2;
}

.historia-text {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: 25px;
}

.historia-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  background: rgba(3, 188, 137, 0.1);
  border: 2px solid rgba(3, 188, 137, 0.3);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: #03bc89;
  box-shadow: 0 10px 30px rgba(3, 188, 137, 0.3);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #03bc89;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #B0B0B0;
}

.historia-imagen {
  position: relative;
}

.imagen-frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(3, 188, 137, 0.3);
  border: 3px solid rgba(3, 188, 137, 0.3);
}

.imagen-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.imagen-frame:hover img {
  transform: scale(1.05);
}

.imagen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 188, 137, 0.2) 0%, transparent 100%);
  pointer-events: none;
}

/* Sección Esencia */
.esencia-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
}

.esencia-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(3, 188, 137, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(3, 188, 137, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.esencia-section .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
  text-align: center;
}

.esencia-section .section-tag {
  background: rgba(3, 188, 137, 0.1);
  color: #03bc89;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border: 2px solid rgba(3, 188, 137, 0.3);
  display: inline-block;
}

.esencia-section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.esencia-section .section-title .text-green {
  color: #03bc89;
  text-shadow: 0 0 30px rgba(3, 188, 137, 0.5);
}

.esencia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.esencia-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(3, 188, 137, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.esencia-card:hover {
  transform: translateY(-10px);
  border-color: rgba(3, 188, 137, 0.5);
  box-shadow: 0 20px 50px rgba(3, 188, 137, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.esencia-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.esencia-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #03bc89;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.esencia-card p {
  font-size: 0.95rem;
  color: #E0E0E0;
  line-height: 1.7;
}

/* Sección Equipo */
.equipo-section {
  background: #000000;
  padding: 100px 0;
  position: relative;
}

.equipo-section .section-header {
  margin-bottom: 60px;
  text-align: center;
}

.equipo-section .section-tag {
  background: rgba(3, 188, 137, 0.1);
  color: #03bc89;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border: 2px solid rgba(3, 188, 137, 0.3);
  display: inline-block;
}

.equipo-section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.equipo-section .section-title .text-green {
  color: #03bc89;
  text-shadow: 0 0 30px rgba(3, 188, 137, 0.5);
}

.equipo-section .section-subtitle {
  font-size: 1.1rem;
  color: #B0B0B0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.equipo-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(3, 188, 137, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.equipo-card:hover {
  transform: translateY(-10px);
  border-color: rgba(3, 188, 137, 0.5);
  box-shadow: 0 20px 50px rgba(3, 188, 137, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.equipo-avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #03bc89;
  box-shadow: 0 0 30px rgba(3, 188, 137, 0.4);
}

.equipo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.equipo-card:hover .equipo-avatar img {
  transform: scale(1.1);
}

.equipo-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #03bc89;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.equipo-role {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.equipo-desc {
  font-size: 0.9rem;
  color: #B0B0B0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .historia-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .esencia-grid {
    grid-template-columns: 1fr;
  }
  
  .equipo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nosotros-hero-section .section-title {
    font-size: 2rem;
  }
  
  .historia-section,
  .esencia-section,
  .equipo-section {
    padding: 60px 0;
  }
  
  .historia-stats {
    grid-template-columns: 1fr;
  }
  
  .video-container {
    border-radius: 15px;
  }
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.historia-content,
.historia-imagen,
.esencia-card,
.equipo-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.historia-imagen { animation-delay: 0.2s; }
.esencia-card:nth-child(1) { animation-delay: 0.1s; }
.esencia-card:nth-child(2) { animation-delay: 0.2s; }
.esencia-card:nth-child(3) { animation-delay: 0.3s; }
.esencia-card:nth-child(4) { animation-delay: 0.4s; }
.equipo-card:nth-child(1) { animation-delay: 0.1s; }
.equipo-card:nth-child(2) { animation-delay: 0.2s; }
.equipo-card:nth-child(3) { animation-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════
   CORRECCIÓN FORZADA - DESKTOP TAMBIÉN
   ═══════════════════════════════════════════════════════ */

/* Testimonios - Imágenes dentro del círculo (desktop) */
.testimonios-section .testimonial-avatar,
#testimonios .testimonial-avatar,
section[id*="testimonio"] .testimonial-avatar {
  overflow: hidden !important;
  border-radius: 50% !important;
}

.testimonios-section .testimonial-avatar img,
#testimonios .testimonial-avatar img,
section[id*="testimonio"] .testimonial-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}

/* Contacto - Hover en desktop */
.contacto-section-premium .contacto-card:hover,
#contacto .contacto-card:hover,
section[id*="contacto"] .contacto-card:hover {
  transform: translateX(10px) !important;
  border-color: #03bc89 !important;
  box-shadow: 0 10px 30px rgba(3, 188, 137, 0.2) !important;
  transition: all 0.3s ease !important;
}

/* ═══════════════════════════════════════════════════════
SECCIÓN SOPORTE TÉCNICO - PREMIUM
═══════════════════════════════════════════════════════ */
.soporte-tecnico-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #000000;
}

.soporte-tecnico-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(10,58,42,0.75) 50%, rgba(0,0,0,0.9) 100%),
    url('assets/images/services/Técnico-trabajando.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.soporte-tecnico-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.soporte-tecnico-section .container {
  position: relative;
  z-index: 2;
}

.soporte-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.soporte-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #03bc89;
  border-radius: 50%;
  box-shadow: 0 0 10px #03bc89, 0 0 20px #03bc89;
  animation: floatParticle linear infinite;
  opacity: 0;
}

.soporte-particle:nth-child(1) { left: 10%; animation-duration: 15s; animation-delay: 0s; }
.soporte-particle:nth-child(2) { left: 25%; animation-duration: 20s; animation-delay: 2s; }
.soporte-particle:nth-child(3) { left: 40%; animation-duration: 18s; animation-delay: 4s; }
.soporte-particle:nth-child(4) { left: 55%; animation-duration: 22s; animation-delay: 1s; }
.soporte-particle:nth-child(5) { left: 70%; animation-duration: 25s; animation-delay: 3s; }
.soporte-particle:nth-child(6) { left: 85%; animation-duration: 17s; animation-delay: 5s; }
.soporte-particle:nth-child(7) { left: 95%; animation-duration: 21s; animation-delay: 2.5s; }
.soporte-particle:nth-child(8) { left: 5%; animation-duration: 19s; animation-delay: 4.5s; }

@keyframes floatParticle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
}

.soporte-tecnico-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.soporte-tecnico-section .section-tag {
  display: inline-block;
  background: rgba(3, 188, 137, 0.15);
  color: #03bc89;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border: 2px solid rgba(3, 188, 137, 0.4);
  box-shadow: 0 0 20px rgba(3, 188, 137, 0.3);
}

.soporte-tecnico-section .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 30px rgba(3, 188, 137, 0.5);
}

.soporte-tecnico-section .section-title .text-green {
  color: #03bc89;
  text-shadow: 0 0 40px rgba(3, 188, 137, 0.8);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(3, 188, 137, 0.5); }
  50% { text-shadow: 0 0 40px rgba(3, 188, 137, 0.9), 0 0 60px rgba(3, 188, 137, 0.6); }
}

.soporte-tecnico-section .section-subtitle {
  font-size: 1.1rem;
  color: #B0B0B0;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.badge-disponible {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(3, 188, 137, 0.15);
  border: 2px solid #03bc89;
  border-radius: 30px;
  color: #03bc89;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(3, 188, 137, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
  margin-top: 20px;
}

.badge-disponible::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #03bc89;
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px #03bc89, 0 0 20px #03bc89;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(3, 188, 137, 0.3); }
  50% { box-shadow: 0 0 30px rgba(3, 188, 137, 0.6); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.soporte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.soporte-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(3, 188, 137, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(3, 188, 137, 0.05);
}

.soporte-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #03bc89;
  box-shadow:
    0 20px 50px rgba(3, 188, 137, 0.4),
    inset 0 0 30px rgba(3, 188, 137, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.soporte-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(3, 188, 137, 0.1), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.soporte-card:hover::before {
  left: 100%;
}

.soporte-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(3, 188, 137, 0.25) 0%, rgba(4, 217, 158, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 3px solid rgba(3, 188, 137, 0.5);
  box-shadow: 0 0 30px rgba(3, 188, 137, 0.4);
  transition: all 0.4s ease;
  position: relative;
}

.soporte-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(3, 188, 137, 0.3);
  border-radius: 50%;
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.3; }
}

.soporte-card:hover .soporte-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 50px rgba(3, 188, 137, 0.7);
  border-color: #03bc89;
}

.soporte-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.soporte-card:hover h3 {
  color: #03bc89;
  text-shadow: 0 0 15px rgba(3, 188, 137, 0.5);
}

.soporte-card p {
  font-size: 0.95rem;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.soporte-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(3, 188, 137, 0.15);
  border: 2px solid rgba(3, 188, 137, 0.4);
  border-radius: 30px;
  color: #03bc89;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.soporte-btn:hover {
  background: #03bc89;
  color: #000000;
  border-color: #03bc89;
  box-shadow: 0 0 25px rgba(3, 188, 137, 0.6);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .soporte-tecnico-section {
    padding: 80px 0;
  }

  .soporte-tecnico-section::before {
    background-attachment: scroll;
  }

  .soporte-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .soporte-card {
    padding: 30px 20px;
  }

  .soporte-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .badge-disponible {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* ═══════════════════════════════════════════════════════
HERO SECTION - PLANES CON IMAGEN DE FONDO
═══════════════════════════════════════════════════════ */
.planes-hero-section {
  position: relative !important;
  min-height: 500px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 120px 20px 80px !important;
  background: url('assets/images/services/Fondo-de-ciudad-nocturna.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  overflow: hidden !important;
}

.planes-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.60) 0%,
    rgba(10, 58, 42, 0.45) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

.planes-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 0.8s ease;
}

.planes-hero-badge {
  display: inline-block;
  background: rgba(3, 188, 137, 0.15);
  color: #03bc89;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 2px solid rgba(3, 188, 137, 0.4);
  box-shadow: 0 0 20px rgba(3, 188, 137, 0.3);
}

.planes-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 30px rgba(3, 188, 137, 0.5);
}

.planes-hero-title .text-green {
  color: #03bc89;
  text-shadow: 0 0 40px rgba(3, 188, 137, 0.8);
}

.planes-hero-subtitle {
  font-size: 1.3rem;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.planes-hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.planes-hero-stats .stat-item {
  text-align: center;
}

.planes-hero-stats .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #03bc89;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 20px rgba(3, 188, 137, 0.6);
  line-height: 1;
  margin-bottom: 8px;
}

.planes-hero-stats .stat-label {
  font-size: 0.9rem;
  color: #B0B0B0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════
SECCIÓN PLANES PREMIUM
═══════════════════════════════════════════════════════ */
.planes-premium-section {
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(10,58,42,0.75) 50%, rgba(0,0,0,0.9) 100%),
    url('assets/images/services/Fondo-de-ciudad-nocturna.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.planes-premium-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(3, 188, 137, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(3, 188, 137, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
}

.planes-premium-section .section-title {
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.planes-premium-section .section-subtitle {
  color: #B0B0B0;
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════
GRID DE PLANES
═══════════════════════════════════════════════════════ */
.planes-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
TARJETA DE PLAN PREMIUM
═══════════════════════════════════════════════════════ */
.plan-card-premium {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(3, 188, 137, 0.25);
  border-radius: 25px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(3, 188, 137, 0.05);
  display: flex;
  flex-direction: column;
}

.plan-card-premium:hover {
  transform: translateY(-10px);
  border-color: rgba(3, 188, 137, 0.6);
  box-shadow:
    0 20px 50px rgba(3, 188, 137, 0.3),
    inset 0 0 30px rgba(3, 188, 137, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.plan-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(3, 188, 137, 0.1), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.plan-card-premium:hover::before {
  left: 100%;
}

/* Plan destacado (Estándar) */
.plan-card-premium.plan-featured {
  background: linear-gradient(135deg, rgba(3, 188, 137, 0.12) 0%, rgba(4, 217, 158, 0.06) 100%);
  border-color: #03bc89;
  border-width: 3px;
  box-shadow:
    0 15px 40px rgba(3, 188, 137, 0.35),
    inset 0 0 40px rgba(3, 188, 137, 0.15);
  transform: scale(1.05);
}

.plan-card-premium.plan-featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow:
    0 25px 60px rgba(3, 188, 137, 0.45),
    inset 0 0 50px rgba(3, 188, 137, 0.2);
}

/* Badge "Más Popular" */
.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000;
  padding: 8px 50px;
  transform: rotate(45deg);
  font-size: 11px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  z-index: 3;
}

/* Icono del plan */
.plan-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(3, 188, 137, 0.5));
}

/* Nombre del plan */
.plan-card-premium .plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Precio */
.plan-price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.plan-price {
  font-size: 4.5rem;
  font-weight: 900;
  color: #03bc89;
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
  text-shadow: 0 0 30px rgba(3, 188, 137, 0.6);
}

.plan-price-unit {
  font-size: 1.3rem;
  color: #B0B0B0;
  font-weight: 600;
}

/* Depósito */
.plan-card-premium .plan-deposit {
  text-align: center;
  font-size: 1rem;
  color: #B0B0B0;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(3, 188, 137, 0.2);
}

.plan-card-premium .plan-deposit strong {
  color: #03bc89;
  font-weight: 700;
}

/* Lista de características */
.plan-card-premium .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.plan-card-premium .plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(3, 188, 137, 0.1);
  color: #E0E0E0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

.plan-card-premium .plan-features li:hover {
  padding-left: 10px;
  color: #FFFFFF;
}

.plan-card-premium .plan-features .check-icon {
  color: #03bc89;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Botón del plan */
.plan-card-premium .plan-button {
  display: block;
  width: 100%;
  padding: 16px 30px;
  background: rgba(3, 188, 137, 0.15);
  color: #03bc89;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid rgba(3, 188, 137, 0.4);
  position: relative;
  overflow: hidden;
}

.plan-card-premium .plan-button:hover {
  background: #03bc89;
  color: #000000;
  border-color: #03bc89;
  box-shadow: 0 0 30px rgba(3, 188, 137, 0.6);
  transform: translateY(-3px);
}

/* Botón del plan destacado */
.plan-card-premium .plan-button.plan-button-featured {
  background: linear-gradient(135deg, #03bc89 0%, #04d99e 100%);
  color: #FFFFFF;
  border-color: #03bc89;
  box-shadow:
    0 8px 25px rgba(3, 188, 137, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.plan-card-premium .plan-button.plan-button-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

.plan-card-premium .plan-button.plan-button-featured:hover {
  box-shadow:
    0 12px 35px rgba(3, 188, 137, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════
ANIMACIONES DE ENTRADA
═══════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-card-premium {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.plan-card-premium:nth-child(1) {
  animation-delay: 0.1s;
}

.plan-card-premium:nth-child(2) {
  animation-delay: 0.2s;
}

.plan-card-premium:nth-child(3) {
  animation-delay: 0.3s;
}

/* ═══════════════════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .planes-hero-section {
    min-height: 400px;
    padding: 100px 20px 60px;
  }
  
  .planes-hero-stats {
    gap: 30px;
  }
  
  .planes-hero-stats .stat-number {
    font-size: 2.5rem;
  }
  
  .plan-card-premium.plan-featured {
    transform: scale(1);
  }
  
  .plan-card-premium.plan-featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .planes-hero-section {
    min-height: 350px;
    padding: 90px 20px 50px;
    background-attachment: scroll;
  }
  
  .planes-hero-title {
    font-size: 2rem;
  }
  
  .planes-hero-subtitle {
    font-size: 1rem;
  }
  
  .planes-hero-stats {
    gap: 20px;
  }
  
  .planes-hero-stats .stat-number {
    font-size: 2rem;
  }
  
  .planes-premium-section {
    padding: 60px 0;
  }
  
  .planes-grid-premium {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .plan-card-premium {
    padding: 30px 20px;
  }
  
  .plan-price {
    font-size: 3.5rem;
  }
  
  .popular-badge {
    top: 15px;
    right: -40px;
    padding: 6px 45px;
    font-size: 10px;
  }
}
