:root {
  --primary: #0066cc;
  --primary-dark: #0052a3;
  --secondary: #00cc66;
  --secondary-dark: #00a350;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --text: #333;
  --text-light: #666;
  --border: #e0e0e0;
}

body.dark-mode {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --secondary: #10b981;
  --secondary-dark: #059669;
  --dark: #f8f9fa;
  --light: #1e293b;
  --text: #e2e8f0;
  --text-light: #94a3b8;
  --border: #334155;
  background-color: #0f172a;
}

body.dark-mode .header {
  background: #fdfdfd;
  border-bottom-color: #334155;
}

body.dark-mode .plan-card {
  background: #1e293b;
  border-color: #334155;
}


body.dark-mode .plan-card__name {
  background: linear-gradient(135deg, #38bdf8 0%, #f8fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(56, 189, 248, 0.3));
}




.plan-card__before {
  text-decoration: line-through;
  color: rgb(131, 128, 128);
  margin-top: 8px;
}

body.dark-mode .benefit-card.bubble {
  background: rgba(30, 41, 59, 0.8);
  box-shadow: inset 5px 5px 10px rgba(255, 255, 255, 0.05),
    inset -5px -5px 10px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(0, 0, 0, 0.5);
}

body.dark-mode .benefit-card.bubble:hover {
  box-shadow: inset 5px 5px 10px rgba(255, 255, 255, 0.1),
    inset -5px -5px 10px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(59, 130, 246, 0.2);
}

body.dark-mode .hero {
  background: #0f172a;
}

body.dark-mode .hero__title {
  color: #f8f9fa;
}

body.dark-mode .plans {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

body.dark-mode .swiper-slide {
  background-color: #334155;
}

body.dark-mode .swiper-txt h3 {
  color: #f8f9fa;
}

body.dark-mode .navbar {
  background: #ffffff;
}

body.dark-mode .nav-link {
  color: #000000;
}

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

body.dark-mode .hamburger span {
  background: #e2e8f0;
}

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: var(--text);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary);
}

body.dark-mode .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  font-family: 'Inter', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* ANIMACIÓN GENERAL DE SECCIONES */
.page-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.page-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
.header {
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.253);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* NAVBAR */
.navbar {
  display: flex;
  gap: 40px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

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

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

/* HEADER RIGHT */
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 204, 102, 0.05));
  transition: all 0.3s ease;
}

.header__phone-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.header__phone-btn svg {
  stroke-width: 2.5;
}

/* REGISTRO BUTTON (before: whatsapp) */
.btn-registrate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

/* Efecto shimmer */
.btn-registrate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  animation: btn-shimmer 3s infinite;
}

@keyframes btn-shimmer {
  0% {
    left: -100%;
  }

  55% {
    left: 160%;
  }

  100% {
    left: 160%;
  }
}

.btn-registrate:hover {
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.50);
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.btn-registrate:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.35);
}

.btn-registrate svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-registrate:hover svg {
  transform: rotate(12deg) scale(1.2);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
  background: white;
  min-height: 100vh;
  display: flex;
  align-items: center;

}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 204, 102, 0.03) 100%);
}

.hero__blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(50px);
  opacity: 0.15;
}

.hero__blob--1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  top: -100px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.hero__blob--2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  bottom: -50px;
  left: -50px;
  animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {

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

  33% {
    transform: translate(30px, -50px);
  }

  66% {
    transform: translate(-20px, 20px);
  }
}

.hero__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

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

.hero__title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.hero__highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 500px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 10px;
}

.btn {
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.45);
  transform: translateY(-3px);
}

.btn--secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

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

.btn--peliculas {
  background: rgb(239, 10, 10);
  color: white;
  box-shadow: 0 8px 24px rgba(212, 74, 74, 0.3);
}

.btn--peliculas:hover {
  box-shadow: 0 8px 24px rgba(212, 74, 74, 0.3);
  transform: translateY(-3px);
}

.hero__trust {
  font-size: 14px;
  color: var(--text-light);
  padding-top: 10px;
  font-weight: 500;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  position: relative;
}

.hero__3d-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: hero-rotate 6s linear infinite;
}

.hero__3d-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Contain shine effect */
  background: transparent;
  /* Ensure no weird background */
}

.hero__3d-face--front {
  transform: translateZ(2px);
}

.hero__3d-face--back {
  transform: rotateY(180deg) translateZ(2px);
}

.hero__3d-face img {
  max-width: 100%;
  height: auto;

}

/* Shine effect */
.hero__3d-face::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  animation: shine 6s linear infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    opacity: 0;
    transform: translateX(-100%) skewX(-15deg);
  }

  20% {
    opacity: 1;
  }

  40% {
    opacity: 0;
    transform: translateX(100%) skewX(-15deg);
  }

  100% {
    opacity: 0;
    transform: translateX(100%) skewX(-15deg);
  }
}

@keyframes hero-rotate {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* BENEFICIOS SECTION */
.benefits {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

/* CONTENEDOR */
.benefits__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* TITULOS */
.benefits__title {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefits__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

/* GRID DE BENEFICIOS */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

/* BURBUJAS BLANCAS REALISTAS */
.benefit-card.bubble {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px) saturate(180%);
  border-radius: 50%;
  aspect-ratio: 1;
  padding: 1.5rem;
  position: relative;
  /* Restored for SVGs */
  z-index: 1;
  will-change: transform;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 5px 5px 10px rgba(255, 255, 255, 0.6),
    inset -5px -5px 10px rgba(0, 0, 0, 0.2),
    0 0 25px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  user-select: none;
}

.benefit-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

.benefit-card__icon {
  font-size: 2.5rem;
  /* Increased size */
  margin-bottom: 10px;
  line-height: 1;
}

.benefit-card.bubble:hover {
  transform: scale(1.05);
  box-shadow: inset 5px 5px 10px rgba(255, 255, 255, 0.8),
    inset -5px -5px 10px rgba(0, 0, 0, 0.25),
    0 0 30px rgba(255, 255, 255, 0.4);
}

/* Reflejo superior simulando luz */
.benefit-card.bubble::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 20%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 60%);
  border-radius: 50%;
  filter: blur(4px);
}

/* Reflejo secundario inferior */
.benefit-card.bubble::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 25%;
  height: 25%;
  background: radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.5), transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
}

/* ANIMACIONES INTERACTIVAS */

/* 1. Ultra Rápido - Rayo Eléctrico */
.lightning-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px;
  height: 80px;
  color: #facc15;
  /* Amarillo eléctrico */
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.8));
}

@keyframes lightning-strike {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  10% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }

  20% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  40% {
    opacity: 0.5;
  }

  60% {
    opacity: 1;
  }

  80% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}

@keyframes card-shake {

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

  20% {
    transform: translateX(-5px) rotate(-2deg);
  }

  40% {
    transform: translateX(5px) rotate(2deg);
  }

  60% {
    transform: translateX(-3px);
  }

  80% {
    transform: translateX(3px);
  }
}

.anim-speed .lightning-svg {
  animation: lightning-strike 0.6s ease-out forwards;
}

.anim-speed {
  animation: card-shake 0.4s ease-in-out;
}

/* 2. Conexión Estable - Escudo */
.shield-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px;
  height: 80px;
  color: #0ea5e9;
  /* Azul cielo */
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.6));
}

@keyframes shield-appear {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  20% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }

  40% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.9));
  }

  60% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }

  80% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}

.anim-stable .shield-svg {
  animation: shield-appear 0.8s ease-out forwards;
}

.anim-stable {
  animation: stable-anim 0.8s ease-out;
}

/* 3. Sin Límite - Infinito */
.infinity-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 90px;
  height: 90px;
  color: #8b5cf6;
  /* Violeta */
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

@keyframes infinity-spin {
  0% {
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    opacity: 0;
  }

  20% {
    transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1) rotate(180deg);
    opacity: 1;
  }

  80% {
    transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(0) rotate(360deg);
    opacity: 0;
  }
}

.anim-unlimited .infinity-svg {
  animation: infinity-spin 1s ease-in-out forwards;
}

.anim-unlimited {
  animation: unlimited-anim 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 4. Precios - Moneda */
.coin-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px;
  height: 80px;
  color: #22c55e;
  /* Verde */
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.6));
}

@keyframes coin-flip-svg {
  0% {
    transform: translate(-50%, -50%) scale(0) rotateY(0);
    opacity: 0;
  }

  20% {
    transform: translate(-50%, -50%) scale(1.2) rotateY(0);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1) rotateY(180deg);
    opacity: 1;
  }

  80% {
    transform: translate(-50%, -50%) scale(1) rotateY(360deg);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(0) rotateY(360deg);
    opacity: 0;
  }
}

.anim-price .coin-svg {
  animation: coin-flip-svg 1s ease-in-out forwards;
}

.anim-price {
  animation: price-anim 1s ease-in-out;
}

/* 5. Soporte - Headset */
.headset-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px;
  height: 80px;
  color: #f97316;
  /* Naranja */
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.6));
}

@keyframes headset-pop {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  20% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }

  40% {
    transform: translate(-50%, -50%) scale(0.9) rotate(-10deg);
    opacity: 1;
  }

  60% {
    transform: translate(-50%, -50%) scale(1.1) rotate(10deg);
    opacity: 1;
  }

  80% {
    transform: translate(-50%, -50%) scale(1) rotate(0);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}

.anim-support .headset-svg {
  animation: headset-pop 0.8s ease-in-out forwards;
}

.anim-support {
  animation: support-anim 0.8s ease-in-out;
}

/* 6. Pagos - Tarjeta */
.card-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px;
  height: 80px;
  color: #ec4899;
  /* Rosa */
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.6));
}

@keyframes card-swipe-svg {
  0% {
    transform: translate(-50%, -50%) scale(0) translateX(0);
    opacity: 0;
  }

  20% {
    transform: translate(-50%, -50%) scale(1.2) translateX(0);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1) translateX(30px) rotate(10deg);
    opacity: 1;
  }

  80% {
    transform: translate(-50%, -50%) scale(1) translateX(-10px);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(0) translateX(0);
    opacity: 0;
  }
}

.anim-payment .card-svg {
  animation: card-swipe-svg 0.8s ease-in-out forwards;
}

.anim-payment {
  animation: payment-anim 0.8s ease-in-out;
}

/* CTA */
.benefits__cta {
  margin-top: 2rem;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .benefits {
    padding-left: 45px;
    padding-right: 45px;
  }
}

/* PLANES SECTION */

/* PLANES SECTION */
.plans {
  position: relative;
  min-height: 100vh;
  /* 👈 asegura que ocupe toda la pantalla */
  display: flex;
  align-items: center;
  /* 👈 centra verticalmente el slider */
  justify-content: center;
  padding: 100px 20px;
  /* puedes reducir un poco el padding superior */
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-sizing: border-box;
}


.plans__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plans__title {
  font-size: 44px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.plans__subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.plan-card {
  background: white;
  padding: 40px 32px;
  border-radius: 12px;
  border: 2px solid rgba(0, 102, 204, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(184, 11, 11, 0.08);
  position: relative;
}

.plan-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 36px rgba(0, 102, 204, 0.2);

  transform: scale(1.03);
}

.plan-card--empty {
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
  visibility: hidden;
}

.plan-card__before {
  text-decoration: line-through;
  color: #94a3b8;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.plan-card__badge {
  position: absolute;
  top: 12px;
  left: 20px;
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.plan-card__name {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #0f172a 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s ease;
}

.plan-card:hover .plan-card__name {
  filter: drop-shadow(0 4px 8px rgba(14, 165, 233, 0.2));
}

@keyframes pulse-scale {

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

  50% {
    transform: scale(1.02);
  }
}

.plan-card__speed {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card__amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
}

.plan-card__period {
  font-size: 14px;
  color: var(--text-light);
}

.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-card__features li {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.plan-card__features li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

.plan-card .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/*===========================
    PREGUNTAS FRECUENTES
   ===========================*/

.faq {
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.98));
  /* fondo más profundo tipo MEGA NET */
  color: #ffffff;
}

/* brillo suave de fondo */
.faq::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.14), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(94, 234, 212, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

/* contenedor */
.faq__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  z-index: 1;
}

/* encabezado */
.faq__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq__title {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  background: linear-gradient(120deg, #f9fafb, #e0f2fe, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq__subtitle {
  color: rgba(226, 232, 240, 0.9);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.98rem;
  max-width: 560px;
  margin: 0 auto;
}

/* lista */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  /* centra toda la columna de preguntas */
}

/* item (details) */
.faq__item {
  width: 100%;
  min-width: 1000px;
  overflow: hidden;
  box-sizing: border-box;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), rgba(15, 23, 42, 0.95));
  border-radius: 14px;
  padding: 0.35rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px) saturate(160%);
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease,
    transform 200ms ease,
    background 220ms ease;
}



.faq__item:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 234, 212, 0.6);
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(94, 234, 212, 0.35);
}

.faq__item[open] {
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.12), rgba(15, 23, 42, 0.98));
}

/* summary como botón */
.faq__question {
  width: 100%;
  /* Asegura que la pregunta use todo el ancho */
  white-space: normal;
  /* Permite wrapping del texto */
  overflow-wrap: break-word;
  /* Maneja palabras largas */
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 600;
  color: #e5edff;
  border-radius: 10px;
  position: relative;
}

/* pill de acento a la izquierda */
.faq__question::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, #22d3ee, #4ade80);
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.8);
}

/* icono +/- */
.faq__question::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.95);
  transition:
    transform 180ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.faq__item[open] .faq__question::after {
  content: "–";
  transform: rotate(90deg) translateY(1px);
  background: radial-gradient(circle at 30% 0%, #22d3ee, #4ade80);
  border-color: transparent;
  color: #020617;
}

/* respuesta */
.faq__answer {
  width: 100%;
  overflow-wrap: break-word;
  padding: 0 1.1rem 1rem 1.6rem;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.7;
  font-size: 0.97rem;
  transform-origin: top;
  overflow: hidden;
}

/* Ajustes responsive para FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }

  .faq__container {
    padding: 0 1rem;
  }

  .faq__list {
    min-width: unset;
    /* Elimina el ancho mínimo fijo */
    width: 100%;
    /* Asegura que use el ancho completo disponible */
    max-width: 100%;
    /* Permite que se ajuste al contenedor */
  }

  .faq__item {
    min-width: unset;
    /* Remueve el ancho mínimo fijo */
    width: 100%;
    padding: 0.25rem;
  }

  .faq__question {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .faq__question::before {
    width: 8px;
    height: 8px;
  }

  .faq__question::after {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }

  .faq__answer {
    padding: 0 0.8rem 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .faq__title {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .faq__subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}

/* Ajustes adicionales para pantallas muy pequeñas */
@media (max-width: 480px) {
  .faq {
    padding: 3rem 0;
  }

  .faq__container {
    padding: 0 0.8rem;
  }

  .faq__title {
    font-size: 1.3rem;
  }

  .faq__question {
    padding: 0.7rem;
    font-size: 0.85rem;
  }

  .faq__answer {
    font-size: 0.85rem;
    padding: 0 0.7rem 0.7rem 1rem;
  }
}

/* SWIPER STYLES */

.swiper-wrapper {
  background: none;
  box-shadow: none;
}

.swiper {
  position: relative;
  padding: 40px 60px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ajusta las posiciones de los botones */
.swiper-button-prev {
  left: 10%;
}

.swiper-button-next {
  right: 10%;
}

/* Mantén el resto de los estilos igual */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

.swiper-button-prev:active,
.swiper-button-next:active {
  transform: translateY(-50%) scale(0.95);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 24px;
  color: white;
  font-weight: bold;
}

/* Ajuste responsive */
@media (max-width: 900px) {
  .swiper-button-prev {
    left: 4%;
  }

  .swiper-button-next {
    right: 4%;
  }
}

.container {
  max-width: 1040px;
  padding: 100px 30px;
  background: none;
  margin: 0 auto;
}

.swiper-slide {
  margin-bottom: 50px;
  background-color: #b4afaf;

  border-radius: 15px;
  height: auto;
  width: auto;
  position: relative;
}

.swiper-slide img {
  width: 295px;
  border-radius: 15px;
  height: 420px;

}

.swiper-txt {
  position: absolute;
  padding: 25px;
}

.swiper-txt h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: rgb(0, 0, 0);
}

@media (max-width:900px) {
  .swiper {
    padding: 30px 40px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 18px;
  }

  .swiper-slide {
    width: 100%;
  }

  .header__container {
    gap: 8px;
    height: 60px;
    padding: 0 12px;
    overflow: hidden;
  }

  .hamburger {
    display: flex;
    margin-left: 4px;
  }

  .logo img {
    height: 45px;
  }

  .navbar {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    justify-content: flex-start;
    z-index: 999;
  }

  .navbar.active {
    max-height: 400px;
  }

  .nav-link {
    padding: 16px 20px;
    border-left: 3px solid transparent;
    font-size: 15px;
    width: 100%;
  }

  .nav-link:hover {
    background: var(--light);
    border-left-color: var(--primary);
  }

  .nav-link::after {
    display: none;
  }

  .header__right {
    gap: 6px;
    flex-shrink: 0;
  }

  /* Botón regístrate compacto en móvil */
  .btn-registrate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.3px;
    gap: 5px;
    flex-shrink: 0;
    white-space: nowrap;
    animation: none;
  }

  .btn-registrate::before {
    display: none;
  }

  .btn-registrate svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .btn-whatsapp {
    padding: 10px 14px;
    font-size: 13px;
    letter-spacing: 0.4px;
  }

  .btn-whatsapp span {
    display: none;
  }

  .btn-whatsapp svg {
    width: 18px;
    height: 18px;
  }

  .header__phone-btn {
    display: none;
  }

  .hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__trust {
    font-size: 15px;
    margin-top: 12px;
  }

  .btn {
    width: 100%;
    padding: 14px 24px;
  }

  .hero__blob--1 {
    width: 250px;
    height: 250px;
  }

  .hero__blob--2 {
    width: 200px;
    height: 200px;
  }
}

/* ===========================
   FOOTER STYLES
   =========================== */

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #e0e0e0;
  padding: 60px 0 0;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding: 0 20px 60px;
}

/* COLUMNAS DEL FOOTER */
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo img {
  height: 50px;
  width: auto;
  margin-bottom: 10px;
}

.footer__description {
  font-size: 14px;
  line-height: 1.6;
  color: #b0b0b0;
}

.footer__title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* LISTAS */
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.footer__link:hover::after {
  width: 100%;
}

/* CONTACTO */
.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.footer__contact-item svg {
  flex-shrink: 0;
  color: var(--primary);
  stroke-width: 2;
}

.footer__contact-item a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--primary);
}

/* REDES SOCIALES */
.footer__social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* BOTTOM FOOTER */
.footer__bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  width: 100%;
}

.footer__bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}

.footer__copyright {
  font-size: 14px;
  color: #b0b0b0;
  margin: 0;
}

.footer__copyright strong {
  color: var(--primary);
}

.footer__credit {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.footer__heart {
  color: #ff6b6b;
  animation: heartbeat 1.5s infinite;
}

/* DESKTOP HOVER INTERACTIONS (Restored) */
@media (min-width: 769px) {
  .benefit-card.bubble[data-type="speed"]:hover .lightning-svg {
    animation: lightning-strike 0.6s ease-out forwards;
  }

  .benefit-card.bubble[data-type="speed"]:hover {
    animation: card-shake 0.4s ease-in-out;
  }

  .benefit-card.bubble[data-type="stable"]:hover .shield-svg {
    animation: shield-appear 0.8s ease-out forwards;
  }

  .benefit-card.bubble[data-type="stable"]:hover {
    animation: stable-anim 0.8s ease-out;
  }

  .benefit-card.bubble[data-type="unlimited"]:hover .infinity-svg {
    animation: infinity-spin 1s ease-in-out forwards;
  }

  .benefit-card.bubble[data-type="unlimited"]:hover {
    animation: unlimited-anim 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .benefit-card.bubble[data-type="price"]:hover .coin-svg {
    animation: coin-flip-svg 1s ease-in-out forwards;
  }

  .benefit-card.bubble[data-type="price"]:hover {
    animation: price-anim 1s ease-in-out;
  }

  .benefit-card.bubble[data-type="support"]:hover .headset-svg {
    animation: headset-pop 0.8s ease-in-out forwards;
  }

  .benefit-card.bubble[data-type="support"]:hover {
    animation: support-anim 0.8s ease-in-out;
  }

  .benefit-card.bubble[data-type="payment"]:hover .card-svg {
    animation: card-swipe-svg 0.8s ease-in-out forwards;
  }

  .benefit-card.bubble[data-type="payment"]:hover {
    animation: payment-anim 0.8s ease-in-out;
  }
}

@keyframes heartbeat {

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

  50% {
    transform: scale(1.2);
  }
}

/* RESPONSIVE FOOTER */
@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;

  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px 40px;
    /* corregido 20p -> 20px */
  }

  .footer__bottom-content {
    flex-direction: column;
    gap: 10px;
  }

  .footer__title {
    font-size: 15px;
  }

  .footer__copyright,
  .footer__credit {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer__container {
    gap: 25px;
  }

  .footer__logo img {
    height: 40px;
  }

  .footer__title {
    font-size: 14px;
  }

  .footer__description,
  .footer__link,
  .footer__contact-item {
    font-size: 13px;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
  }
}

/* ===========================
    SECCION UBICACIÓN MEGA NET 
   =========================== */

.location {
  position: relative;
  height: 100vh;
  /* 👈 ocupa toda la pantalla */
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 30% 50%, #0ea5e9 0%, #020617 90%);
}

/* decoraciones */
.location__decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.18), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.18), transparent 60%);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.location__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.location__header {
  text-align: center;
  margin-bottom: 3rem;
}

.location__title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(120deg, #38bdf8, #22d3ee, #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.location__subtitle {
  color: rgba(226, 232, 240, 0.9);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* contenido principal */
.location__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: stretch;
}

.location__info {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* 🎯 efecto 3D inicial */
  transform: perspective(1100px) rotateY(-7deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}

.location__info:hover {
  /* se “endereza” y sube un poco */
  transform: perspective(1100px) rotateY(0deg) rotateX(0deg) translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
  border-color: rgba(125, 211, 252, 0.9);
}


.location__info h3 {
  font-size: 1.1rem;
  color: #a5f3fc;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.location__info p {
  margin-bottom: 0.5rem;
  color: rgba(241, 245, 249, 0.92);
}

.location__info strong {
  color: #4ade80;
}

.location__info .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  background: linear-gradient(90deg, #22d3ee, #4ade80);
  color: #020617;
  font-weight: 700;
  border: none;
}

/* mapa */
.location__map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(14, 165, 233, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location__map:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(14, 165, 233, 0.5);
}


.location__map iframe {
  width: 100%;
  height: 100%;
  flex: 1;
  border: 0;
}

/* fondo decorativo bajo el mapa */
.location__waves {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  background: transparent;
}

.location__waves svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* pin animado */
.map-pin {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #22d3ee, #0ea5e9);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  transform: translateX(-50%);
  animation: pulse-pin 2s infinite;
}

@keyframes pulse-pin {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) scale(1.4);
    opacity: 0.5;
  }
}

/* ilustración tienda */
.location__illustration {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.location-illustration-svg {
  width: 100%;
  max-width: 260px;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.25));
  transform-origin: center bottom;
  animation: locationFloat 6s ease-in-out infinite;
}

@keyframes locationFloat {

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

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

/* Responsive ubicación – móviles */
@media (max-width: 900px) {
  .location {
    height: auto;
    /* deja crecer según contenido */
    min-height: 100vh;
    /* al menos una pantalla */
    align-items: flex-start;
    overflow: visible;
    /* permite scroll, no recorta el mapa */
    padding: 4rem 0 3rem;
  }

  .location__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location__map {
    height: 320px;
    /* altura fija cómoda para el mapa */
  }

  /* opcional: quitar efecto 3D en móvil para que no se vea raro */
  .location__info {
    transform: none;
  }

  .location__info:hover {
    transform: none;
  }

}

/* ===========================
   PRELOADER — FIBRA ÓPTICA
   =========================== */

/* Fondo principal */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 229, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(105, 255, 180, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 10%, rgba(0, 100, 255, 0.15) 0%, transparent 50%),
    linear-gradient(160deg, #000d1a 0%, #000510 50%, #000d14 100%);
  transition: opacity 0.9s ease, visibility 1.2s ease;
}

.preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ---- Partículas flotantes ---- */
.preloader__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.preloader__particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  animation: particle-float linear infinite;
  opacity: 0;
}

.preloader__particles span:nth-child(1) {
  width: 3px;
  height: 3px;
  background: #00e5ff;
  left: 10%;
  animation-duration: 6s;
  animation-delay: 0s;
  top: 80%;
}

.preloader__particles span:nth-child(2) {
  width: 2px;
  height: 2px;
  background: #69ffb4;
  left: 25%;
  animation-duration: 8s;
  animation-delay: 1s;
  top: 70%;
}

.preloader__particles span:nth-child(3) {
  width: 4px;
  height: 4px;
  background: #00b0ff;
  left: 40%;
  animation-duration: 7s;
  animation-delay: 0.5s;
  top: 90%;
}

.preloader__particles span:nth-child(4) {
  width: 2px;
  height: 2px;
  background: #ffffff;
  left: 55%;
  animation-duration: 9s;
  animation-delay: 2s;
  top: 75%;
}

.preloader__particles span:nth-child(5) {
  width: 3px;
  height: 3px;
  background: #00e5ff;
  left: 70%;
  animation-duration: 6s;
  animation-delay: 0.3s;
  top: 85%;
}

.preloader__particles span:nth-child(6) {
  width: 2px;
  height: 2px;
  background: #69ffb4;
  left: 80%;
  animation-duration: 8s;
  animation-delay: 1.5s;
  top: 65%;
}

.preloader__particles span:nth-child(7) {
  width: 3px;
  height: 3px;
  background: #00e5ff;
  left: 15%;
  animation-duration: 7s;
  animation-delay: 2.5s;
  top: 55%;
}

.preloader__particles span:nth-child(8) {
  width: 4px;
  height: 4px;
  background: #ffffff;
  left: 88%;
  animation-duration: 5s;
  animation-delay: 0.8s;
  top: 78%;
}

.preloader__particles span:nth-child(9) {
  width: 2px;
  height: 2px;
  background: #a5ffcc;
  left: 60%;
  animation-duration: 9s;
  animation-delay: 3s;
  top: 60%;
}

.preloader__particles span:nth-child(10) {
  width: 3px;
  height: 3px;
  background: #00e5ff;
  left: 35%;
  animation-duration: 6s;
  animation-delay: 1.2s;
  top: 92%;
}

@keyframes particle-float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-600px) scale(0.6);
    opacity: 0;
  }
}

/* ---- Contenido central ---- */
.preloader__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* ---- Logo ---- */
.preloader__logo img {
  height: 90px;
  width: auto;
  filter:
    drop-shadow(0 0 18px rgba(0, 229, 255, 0.55)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
  animation: logo-breathe 3s ease-in-out infinite;
}

@keyframes logo-breathe {

  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(0, 229, 255, .55)) drop-shadow(0 0 6px rgba(255, 255, 255, .3));
  }

  50% {
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, .9)) drop-shadow(0 0 12px rgba(105, 255, 180, .5));
  }
}

/* ---- Globo + fibra ---- */
.fiber-core {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Halo de fondo que pulsa */
.fiber-core__glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.3) 0%, rgba(0, 229, 255, 0) 70%);
  animation: core-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes core-pulse {

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

  50% {
    transform: scale(1.5);
    opacity: 0.2;
  }
}

/* SVG del globo */
.fiber-svg {
  width: 300px;
  height: 300px;
  overflow: visible;
  animation: globe-rotate 18s linear infinite;
  filter: drop-shadow(0 0 16px rgba(0, 229, 255, 0.2));
}

@keyframes globe-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* El globo no rota, solo el SVG exterior */
.fiber-svg circle[fill^="url(#globeGrad)"],
.fiber-svg circle[fill^="url(#globeShine)"],
.fiber-svg circle[stroke^="rgba(0,229"],
.globe-halo {
  animation: none;
}

/* Halo exterior pulsante */
.globe-halo {
  animation: halo-breathe 3s ease-in-out infinite;
}

@keyframes halo-breathe {

  0%,
  100% {
    opacity: 0.6;
    r: 80;
  }

  50% {
    opacity: 1;
    r: 90;
  }
}

/* Líneas de fibra */
.fiber-line {
  opacity: 0.7;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: fiber-line-draw 2s ease-in-out forwards;
}

@keyframes fiber-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Nodos de ciudad (parpadeo) */
.fiber-node {
  animation: node-blink 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 4px currentColor);
}

@keyframes node-blink {

  0%,
  100% {
    opacity: 1;
    r: 3;
  }

  50% {
    opacity: 0.4;
    r: 2;
  }
}

/* ---- Pulsos de fotones por las fibras ---- */
/* Cada fpulse viaja desde el nodo extremo → globo */

/* top-left: (18,18) → (113,113) */
.fpulse--1 {
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 10px #00e5ff);
  animation: fp1 2s linear infinite;
}

@keyframes fp1 {
  0% {
    transform: translate(18px, 18px);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translate(113px, 113px);
    opacity: 0;
  }
}

/* top-right: (282,18) → (187,113) */
.fpulse--2 {
  filter: drop-shadow(0 0 5px #69ffb4) drop-shadow(0 0 8px #00e5ff);
  animation: fp2 2.3s linear infinite;
  animation-delay: 0.4s;
}

@keyframes fp2 {
  0% {
    transform: translate(282px, 18px);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translate(187px, 113px);
    opacity: 0;
  }
}

/* top-center: (150,5) → (150,88) */
.fpulse--3 {
  filter: drop-shadow(0 0 5px #00b0ff);
  animation: fp3 1.8s linear infinite;
  animation-delay: 0.8s;
}

@keyframes fp3 {
  0% {
    transform: translate(150px, 5px);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translate(150px, 88px);
    opacity: 0;
  }
}

/* bot-left: (18,282) → (113,187) */
.fpulse--4 {
  filter: drop-shadow(0 0 5px #a5ffcc);
  animation: fp4 2.1s linear infinite;
  animation-delay: 1.2s;
}

@keyframes fp4 {
  0% {
    transform: translate(18px, 282px);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translate(113px, 187px);
    opacity: 0;
  }
}

/* bot-right: (282,282) → (187,187) */
.fpulse--5 {
  filter: drop-shadow(0 0 5px #ffffff) drop-shadow(0 0 10px #69ffb4);
  animation: fp5 2.4s linear infinite;
  animation-delay: 0.2s;
}

@keyframes fp5 {
  0% {
    transform: translate(282px, 282px);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translate(187px, 187px);
    opacity: 0;
  }
}

/* left: (5,150) → (88,150) */
.fpulse--6 {
  filter: drop-shadow(0 0 5px #b388ff);
  animation: fp6 1.7s linear infinite;
  animation-delay: 1.6s;
}

@keyframes fp6 {
  0% {
    transform: translate(5px, 150px);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translate(88px, 150px);
    opacity: 0;
  }
}

/* right: (295,150) → (212,150) */
.fpulse--7 {
  filter: drop-shadow(0 0 5px #69ffb4);
  animation: fp7 1.9s linear infinite;
  animation-delay: 0.6s;
}

@keyframes fp7 {
  0% {
    transform: translate(295px, 150px);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translate(212px, 150px);
    opacity: 0;
  }
}

/* bot-center: (150,295) → (150,212) */
.fpulse--8 {
  filter: drop-shadow(0 0 5px #00e5ff);
  animation: fp8 2.2s linear infinite;
  animation-delay: 1s;
}

@keyframes fp8 {
  0% {
    transform: translate(150px, 295px);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translate(150px, 212px);
    opacity: 0;
  }
}

/* ---- Texto ---- */
.preloader__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 14px rgba(0, 229, 255, 0.7);
  animation: text-flicker 3s ease-in-out infinite;
}

@keyframes text-flicker {

  0%,
  100% {
    opacity: 0.7;
    letter-spacing: 4px;
  }

  50% {
    opacity: 1;
    letter-spacing: 5px;
  }
}

/* ---- Barra de progreso fibra ---- */
.fiber-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 300px;
}

.fiber-progress__track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.1), inset 0 0 4px rgba(0, 0, 0, 0.5);
}

/* Relleno animado de progreso */
.fiber-progress__fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg,
      rgba(0, 229, 255, 0.15) 0%,
      rgba(105, 255, 180, 0.25) 50%,
      rgba(0, 229, 255, 0.15) 100%);
  animation: fill-grow 2.5s ease-in-out infinite;
  transform-origin: left;
}

@keyframes fill-grow {
  0% {
    transform: scaleX(0.05);
  }

  60% {
    transform: scaleX(1);
  }

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

/* Haz de luz que recorre la barra */
.fiber-progress__beam {
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 229, 255, 0.9) 40%,
      #ffffff 55%,
      rgba(105, 255, 180, 0.9) 70%,
      transparent 100%);
  filter: blur(0.5px) drop-shadow(0 0 4px #00e5ff);
  animation: beam-sweep 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes beam-sweep {
  0% {
    left: -40%;
  }

  100% {
    left: 110%;
  }
}

.fiber-progress__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 229, 255, 0.6);
  animation: pulse-opacity 1.8s ease-in-out infinite;
}

@keyframes pulse-opacity {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ============================
   RESPONSIVE PRELOADER
   ============================ */
@media (max-width: 768px) {
  .preloader__content {
    gap: 16px;
  }

  .preloader__logo img {
    height: 60px;
  }

  .fiber-core {
    width: 220px;
    height: 220px;
  }

  .fiber-svg {
    width: 220px;
    height: 220px;
  }

  .fiber-progress {
    width: 220px;
  }

  .preloader__text {
    font-size: 9px;
    letter-spacing: 3px;
  }
}