/* Reset and Base Styles */
.tit_testimonios{
    display: none !important;
}
:root{
  --cepeg-color-primary:#14246D;   /* azul tech */
  --cepeg-color-secondary:#f8a303; /* acento dorado */
  --ink:#ffffff;
  --ink-dim:#c9d2ff;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;

  /* Fondo degradado azul tipo glow */
  background: radial-gradient(circle at top left, #0a1b4f, #0a0a0a 70%),
              radial-gradient(circle at bottom right, #0a1b4f, #0a0a0a 70%);
  background-attachment: fixed; /* Para que no se mueva al hacer scroll */
  background-size: cover;
}

/* Imagen de fondo opcional encima del degradado */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://cepegarchivos.s3.us-east-1.amazonaws.com/web/2025/web/suscripcion/suscripcion-banner.png")
    no-repeat center center/cover;
  opacity: 0.2; /* Ajusta la transparencia */
  z-index: -3;
}

/* Cyberpunk Grid Background */
.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(20, 36, 109, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 36, 109, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}
/* Floating Particles */
.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #14246d;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 10px #14246d;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Container */
.container-suscripcion {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero General */
.main-hero-section {
  width: 100%;
  padding: 80px 20px;
  /*background: linear-gradient(135deg, #0d0d1a, #1a1a2e);*/
  display: flex;
  justify-content: center;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* === Neon Text Styles === */
.neon-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #f8a303;
  text-shadow: 0 0 30px rgba(248, 163, 3, 0.8);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.neon-text .highlight-text {
  color: #f8a303;
  text-shadow: 0 0 30px rgba(248, 163, 3, 0.8);
  font-size: 3.9rem;
}
.neon-text p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

/* Botón */
.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(45deg, #f8a303, #007aff);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(248, 163, 3, 0.6);
}
.hero-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 25px rgba(0, 122, 255, 0.8);
}

/* Imagen derecha */
.hero-right {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}
.hero-image-container {
  max-width: 450px;
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 122, 255, 0.4);
  transition: transform 0.3s ease;
}
.hero-image:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px) {
  .neon-text h1 {
    font-size: 2.3rem;
  }
}
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-left {
    order: 1; /* primero el texto */
  }
  .hero-right {
    order: 2; /* después la imagen */
  }
  .hero-image-container {
    max-width: 300px;
    margin: 20px auto 0;
  }
}


/* Hero Section */
.hero-section {
  padding: 60px 0;
  text-align: center;
}

.promo-banner {
  background: linear-gradient(135deg, rgba(20, 36, 109, 0.3), rgba(248, 163, 3, 0.2));
  border: 2px solid #14246d;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(20, 36, 109, 0.2), transparent);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Neon Text */
.neon-text h1 {
  /* Updated font family to Poppins */
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  /* Changed gradient to solid yellow color like "Inversión única" */
  color: #f8a303;
  text-shadow: 0 0 30px rgba(248, 163, 3, 0.8);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.neon-text p {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

/* Countdown */
.countdown-container {
  position: relative;
  z-index: 1;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px; /* más compacto */
  flex-wrap: nowrap; /* ✅ fuerza todo en una sola línea */
  overflow-x: auto; /* evita que se rompa en pantallas ultra pequeñas */
}

/* Bloques del contador */
.time-unit {
  background: linear-gradient(135deg, rgba(20, 36, 109, 0.8), rgba(0, 122, 255, 0.3));
  border: 2px solid #007aff;
  border-radius: 12px;
  padding: 16px;
  min-width: 70px; /* más compacto por defecto */
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
}

.time-unit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.3), transparent);
  animation: scan 2s linear infinite;
}

@keyframes scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Número principal */
.time-unit .number {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 20px #007aff;
}

/* Texto de cada unidad */
.time-unit .label {
  font-size: 0.85rem;
  color: #ffffff;
  margin-top: 5px;
}

/* Separador */
.separator {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  color: #007aff;
  text-shadow: 0 0 15px #007aff;
}

/*Ajustes responsivos */
@media (max-width: 768px) {
  .time-unit {
    min-width: 40px;
    padding: 12px;
  }
  .time-unit .number {
    font-size: 1.6rem;
  }
  .time-unit .label {
    font-size: 0.75rem;
  }
  .separator {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .countdown {
    gap: 8px; /* aún más pegados */
  }
  .time-unit {
    /*min-width: 48px;*/
    padding: 8px;
    border-radius: 8px;
  }
  .time-unit .number {
    font-size: 1.2rem;
  }
  .time-unit .label {
    font-size: 0.65rem;
  }
  .separator {
    font-size: 1.2rem;
  }
}


/* Pricing Section */

.promo-neon {
  text-align: center;
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

.promo-neon .neon-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #f8a303;
  text-shadow: 0 0 30px rgba(248, 163, 3, 0.9);
  margin-bottom: 15px;
}

.promo-neon .neon-text p {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 0 15px #007aff;
  margin-bottom: 40px;
}

/* Marco Neon */
.neon-frame {
  display: inline-block;
  padding: 7px 20px;
  border: 3px solid #f8a303;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 0 25px #f8a303, 0 0 50px rgba(248, 163, 3, 0.6);
  animation: frameGlow 2s ease-in-out infinite alternate;
}

@keyframes frameGlow {
  0% {
    box-shadow: 0 0 20px #f8a303, 0 0 40px rgba(248, 163, 3, 0.6);
    border-color: #f8a303;
  }
  100% {
    box-shadow: 0 0 25px #007aff, 0 0 50px rgba(0, 122, 255, 0.6);
    border-color: #007aff;
  }
}

.discount-text {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 20px #f8a303;
}

.discount-text strong {
  color: #f8a303;
  text-shadow: 0 0 25px #f8a303, 0 0 40px #f8a303;
  font-size: 3rem;
}


.pricing-section {
  padding: 50px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(13, 13, 26, 0.9));
  border: 2px solid #14246d;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  /* Simplified hover effect to minimal translation movement */
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.pricing-card:hover {
  /* Changed to minimal translation movement only */
  transform: translateY(-8px);
  border-color: #f8a303;
  box-shadow: 0 15px 30px rgba(248, 163, 3, 0.2);
}

.pricing-card.featured {
  border-color: #f8a303;
  box-shadow: 0 10px 30px rgba(248, 163, 3, 0.2);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(20, 36, 109, 0.2) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  /* Updated badge gradient to use #007aff */
  background: linear-gradient(45deg, #f8a303, #007aff);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.crown-icon {
  text-align: center;
  margin-bottom: 20px;
}

.holographic-crown {
  font-size: 3rem;
  filter: drop-shadow(0 0 20px #f8a303) drop-shadow(0 0 40px #f8a303);
  animation: hologram 2s ease-in-out infinite;
}

@keyframes hologram {
  0%,
  100% {
    filter: drop-shadow(0 0 20px #f8a303) drop-shadow(0 0 40px #f8a303);
  }
  50% {
    filter: drop-shadow(0 0 30px #00ffcc) drop-shadow(0 0 60px #00ffcc);
  }
}

.card-header h2 {
  /* Updated font family to Poppins */
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.card-header .highlight {
  /* Changed gradient to solid yellow color */
  color: #f8a303;
  text-shadow: 0 0 15px #f8a303;
}

.pricing-info {
  text-align: center;
  margin-bottom: 20px;
}

.old-price {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.current-price {
  /* Updated font family to Poppins */
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f8a303;
  text-shadow: 0 0 15px #f8a303;
}

.users-info {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #14246d;
  border-radius: 25px;
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.user-icon {
  font-size: 1.2rem;
}

/* CTA Buttons */
.cta-button,
.main-cta-button {
  display: block;
  /* Changed button gradient from blue to golden gradient for better visual appeal */
  background: linear-gradient(45deg, #f8a303, #ff8c00);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover,
.main-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(248, 163, 3, 0.4);
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover .button-glow,
.main-cta-button:hover .button-glow {
  left: 100%;
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.features-container {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.5), rgba(13, 13, 26, 0.5));
  border: 2px solid #14246d;
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.section-title {
  /* Updated font family to Poppins */
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  /* Changed gradient to solid yellow color */
  color: #f8a303;
  text-shadow: 0 0 20px #f8a303;
}

.plan-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.plan-btn {
  background: rgba(20, 36, 109, 0.3);
  border: 2px solid #14246d;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.plan-btn.active,
.plan-btn:hover {
  /* Updated plan button gradient to golden theme */
  background: linear-gradient(45deg, #f8a303, #ff8c00);
  color: #fff;
  box-shadow: 0 5px 15px rgba(248, 163, 3, 0.3);
}

.features-grid {
  display: grid;
  gap: 2px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: linear-gradient(90deg, rgba(26, 26, 46, 0.8), rgba(13, 13, 26, 0.8));
  border-left: 3px solid #f8a303;
  padding: 20px;
  transition: all 0.3s ease;
}

.feature-row:hover {
  background: linear-gradient(90deg, rgba(20, 36, 109, 0.2), rgba(248, 163, 3, 0.1));
  /* Updated hover border to #007aff */
  border-left-color: #007aff;
}

.feature-name {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
}

.feature-values {
  display: flex;
  gap: 40px;
  align-items: center;
}

.check-mark {
  /* Updated check mark color to #007aff */
  color: #007aff;
  font-size: 1.5rem;
  font-weight: bold;
  /* Updated check mark shadow to #007aff */
  text-shadow: 0 0 10px #007aff;
}

.individual-value,
.duo-value,
.group-value {
  color: #f8a303;
  font-weight: 600;
  min-width: 100px;
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-container {
  background: linear-gradient(135deg, rgba(20, 36, 109, 0.3), rgba(248, 163, 3, 0.2));
  border: 2px solid #f8a303;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.main-cta-button {
  font-size: 1.3rem;
  padding: 20px 40px;
  margin-bottom: 40px;
  display: inline-block;
}

.urgency-banner h3 {
  /* Updated font family to Poppins */
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  /* Updated urgency text to #007aff */
  color: #007aff;
  /* Updated text shadow to #007aff */
  text-shadow: 0 0 20px #007aff;
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
}

.urgency-banner h2 {
  /* Updated font family to Poppins */
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  /* Updated urgency text to #007aff */
  color: #007aff;
  /* Updated text shadow to #007aff */
  text-shadow: 0 0 20px #007aff;
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
}



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

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

  .cta-buttons a{
      color: #fff;
  }

.secondary-btn,
.primary-btn {
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.secondary-btn {
  background: rgba(248, 163, 3, 0.2);
  border: 2px solid #f8a303;
  color: #f8a303;
}

.primary-btn {
  /* Updated primary button gradient to golden theme */
  background: linear-gradient(45deg, #f8a303, #ff8c00);
  border: 2px solid #f8a303;
  color: #fff;
}

.secondary-btn:hover,
.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(248, 163, 3, 0.3);
}

.phone-number {
  color: #f8a303;
  font-weight: 700;
}

/* Contact Form */
.contact-section {
  padding: 80px 0;
}

.form-container {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(13, 13, 26, 0.8));
  border: 2px solid #14246d;
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-container h2 {
  /* Updated font family to Poppins */
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  /* Changed gradient to solid yellow color */
  color: #f8a303;
  text-shadow: 0 0 20px #f8a303;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: end;
}

.input-group {
  position: relative;
}

.input-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  /* Simplified input border to clean golden border */
  border: 2px solid #f8a303;
  border-radius: 10px;
  padding: 15px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  /* Enhanced focus with subtle glow effect */
  border-color: #007aff;
  box-shadow: 0 0 15px rgba(248, 163, 3, 0.3);
  transform: translateY(-2px);
}

.input-group label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #888;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: #f8a303;
  background: #0a0a0a;
  padding: 0 5px;
}

.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  background: linear-gradient(45deg, #14246d, #f8a303);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.submit-btn {
  /* Updated submit button gradient to golden theme */
  background: linear-gradient(45deg, #f8a303, #ff8c00);
  border: none;
  color: #fff;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(248, 163, 3, 0.4);
}

/* Payment Methods */
.payment-section {
  padding: 40px 0;
  position: relative;  /* o absolute/fixed si quieres que z-index funcione */
  z-index: -3; 
}

.payment-container {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.5), rgba(13, 13, 26, 0.5));
  border: 2px solid #f8a303;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.payment-container h3 {
  color: #f8a303;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.payment-methods {
  display: inline-flex; /* Ocupa solo el espacio de los logos */
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px 20px;  /* Espaciado alrededor */
  border-radius: 10px; /* Bordes redondeados opcionales */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Un poco de sombra opcional */
}

.payment-methods img {
  height: 40px;
  filter: brightness(1.2) contrast(1.1);
  transition: all 0.3s ease;
}

.payment-methods img:hover {
  transform: scale(1.1);
  filter: brightness(1.4) contrast(1.2);
}

/* Payment Badge */
.payment-badge {
  background: linear-gradient(45deg, #f8a303, #ff8c00);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 15px auto;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(248, 163, 3, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .neon-text h1 {
    font-size: 2.5rem;
  }

  .countdown {
    gap: 10px;
  }

  .time-unit {
    /*min-width: 60px;*/
    padding: 15px;
  }

  .time-unit .number {
    font-size: 1.8rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-selector {
    flex-direction: column;
    align-items: center;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .feature-values {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons a{
      color: #fff;
  }

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

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

@media (max-width: 480px) {
  .container-suscripcion {
    padding: 0 15px;
  }

  .promo-banner,
  .features-container,
  .form-container,
  .cta-container {
    padding: 20px;
  }

  .neon-text h1 {
    font-size: 2rem;
  }

  .time-unit .number {
    font-size: 1.5rem;
  }

  .pricing-card {
    padding: 20px;
  }
}

/* ====== WhatsApp Section ====== */
.whatsapp-section {
  background: linear-gradient(180deg, #0d2a87, #0a1e5c);
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}

/* ===== Estilos Neón SOLO para los títulos ===== */
.wa-title {
    font-family: "Poppins", sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #f8a303;
    text-shadow: 0 0 20px #f8a303;
}

.wa-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 
    0 0 3px #00f0ff,
}

.wa-subtitle span {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #007aff;
    text-shadow: 0 0 20px #007aff;
}


.wa-cards {
  display: flex;
  justify-content: center;  
  gap: 20px;                
  flex-wrap: wrap;           
  margin-top: 20px;
}

.wa-card {
  background: #fff;
  color: #0a0a2a;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;

  max-width: 300px;
  width: 100%;
}


.wa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.35);
}

.wa-photo {
  flex: 0 0 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #25D366;
  box-shadow: 0 0 12px rgba(37, 211, 102, .4);
}

.wa-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
}

.wa-info p {
  font-size: 14px;
  margin: 4px 0 8px 0;
  color: #444;
}

.wa-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: #25D366;
}

.wa-number i {
  font-size: 20px;
}


/* 📱 Responsivo */
@media (max-width: 1024px) {
  .wa-title {
    font-size: 2.5rem;
  }

  .wa-subtitle span {
    font-size: 2.2rem;
  }

  .wa-cards {
    gap: 16px;
  }

  .wa-card {
    max-width: 260px;
    padding: 14px;
  }
}

@media (max-width: 768px) {
  .wa-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .wa-subtitle {
    font-size: 14px;
  }

  .wa-subtitle span {
    font-size: 1.8rem;
  }

  .wa-cards {
    flex-direction: column;   /* ✅ Las tarjetas en columna */
    align-items: center;
    gap: 18px;
  }

  .wa-card {
    max-width: 90%;  /* ✅ Ocupa casi todo el ancho */
    flex-direction: row;
    justify-content: flex-start;
  }

  .wa-photo {
    flex: 0 0 60px;
    height: 60px;
  }

  .wa-info h3 {
    font-size: 16px;
  }

  .wa-info p {
    font-size: 13px;
  }

  .wa-number {
    font-size: 14px;
  }

  .wa-number i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .wa-title {
    font-size: 1.6rem;
  }

  .wa-subtitle {
    font-size: 13px;
  }

  .wa-subtitle span {
    font-size: 1.4rem;
  }

  .wa-card {
    padding: 12px;
    gap: 10px;
    border-radius: 14px;
  }

  .wa-photo {
    flex: 0 0 50px;
    height: 50px;
  }

  .wa-info h3 {
    font-size: 14px;
  }

  .wa-info p {
    font-size: 12px;
  }

  .wa-number {
    font-size: 13px;
  }

  .wa-number i {
    font-size: 16px;
  }
}




/* ====== Sección Certificado====== */
.cert-section{
  position:relative;
  padding:80px 20px;
  overflow:hidden;
  border-radius: 20px;
  margin-bottom: 30px;
}

/* Fondo gradiente + glow + grid suave */
.cert-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 500px at 85% 20%, rgba(0,122,255,.15), transparent 60%),
    radial-gradient(800px 500px at 10% 80%, rgba(20,36,109,.35), transparent 60%),
    linear-gradient(180deg, #0a0f2c 0%, #0b0e24 60%, #0a0a1a 100%) !important;
  z-index:-2;
}
.cert-bg::after{
  content:"";
  position:absolute; inset:0;
  /*background-image:*/
  /*  linear-gradient(rgba(20,36,109,.14) 1px, transparent 1px),*/
  /*  linear-gradient(90deg, rgba(20,36,109,.14) 1px, transparent 1px);*/
  /*background-size:42px 42px;*/
  /*mask-image: radial-gradient(75% 75% at 50% 50%, #000 65%, transparent 100%);*/
  z-index:-1;
  pointer-events:none;
}

/* ====== Layout ====== */
.cert-wrapper{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:48px;
  align-items:center;
}

/* ✅ Responsive (≤992px): texto primero, certificado después */
@media (max-width: 992px){
  .cert-wrapper{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: initial;          /* evita centrado global */
  }

  /* Orden correcto */
  .cert-info{ 
      order: 1; 
      text-align: left !important; }
  .cert-card-area{ 
      order: 2; }

  /* Listado siempre alineado a la izquierda */
  .cert-list{ 
      text-align: left !important; 
      
  }

  /* CTA y logos centrados (solo estos) */
  .cert-cta{ 
      justify-content: center; 
      
  }
  .cert-logos{ 
      justify-content: center; 
      
  }
}


@media (max-width: 992px){
  .cert-card-area{
    width: 100%;
    padding-inline: 16px;   /* margen interno lateral */
    box-sizing: border-box;
  }

  .cert-3d{
    width: 100%;            /* ocupa todo el ancho del contenedor */
    max-width: 480px;       /* límite máximo para que no explote */
    margin-inline: auto;    /* lo centra */
  }
}


/* ====== Texto / Izquierda ====== */
.cert-badge{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.5px;
  background:linear-gradient(45deg, var(--cepeg-color-secondary), #eab314);
  color:#14246D;
  box-shadow:0 0 16px rgba(248,163,3,.35);
  margin-bottom:16px;
}

.cert-title{
  font-family:"Poppins";
  font-weight:900;
  font-size: clamp(28px, 4vw, 48px);
  line-height:1.05;
  color:var(--ink);
  margin:0 0 12px 0;
  text-shadow:0 0 26px rgba(248,163,3,.25);
  font-size: 2.8rem;
}
.cert-title span{
  color:var(--cepeg-color-secondary);
  text-shadow:0 0 30px rgba(248,163,3,.85);
  font-size: 3.3rem;
}

.cert-subtitle{
  color:var(--ink-dim);
  margin:0 0 22px 0;
  font-size:clamp(15px,1.6vw,18px);
}

.cert-list{
  list-style:none;
  padding:0; margin:0 0 24px 0;
  display:grid; gap:12px;
}
.cert-list li{
  display:flex; gap:12px; align-items:flex-start;
  color:#e7ecff;
  font-size:15.5px;
  text-align:left;
}
.cert-list li i{
  width:18px; height:18px; flex:0 0 18px; margin-top:2px;
  border-radius:50%;
  background: radial-gradient(circle at 40% 40%, #fff 0%, #ffe2b3 30%, var(--cepeg-color-secondary) 60%);
  box-shadow:0 0 14px rgba(248,163,3,.55), 0 0 26px rgba(0,122,255,.25) inset;
}

/* Bloque de logos */
.cert-logos{
  display:flex; 
  gap:12px; 
  align-items:center; 
  flex-wrap:wrap;
  background-color: #fff;
  border:1px solid rgba(20,36,109,.45);
  border-radius:14px;
  padding:10px 14px;
  margin:18px 0 26px 0;
  backdrop-filter: blur(6px);
  justify-content:center;  /* centra en pantallas grandes */
}

/* Logos */
.cert-logos img{
  height:60px;
  max-width:180px; 
  object-fit:contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)) brightness(1.05) contrast(1.05);
  transition: transform .3s ease;
}
.cert-logos img:hover{ transform: translateY(-2px) scale(1.03); }

/*Responsive logos en móviles */
@media(max-width: 600px){
  .cert-logos{
    flex-direction:column; /* uno debajo del otro */
    gap:16px;
    padding:16px;
  }
  .cert-logos img{
    height:auto;
    max-width:85%;  /* que no se corten */
  }
}


/* CTAs */
.cert-cta{ display:flex; gap:12px; flex-wrap:wrap; }
.btn-neon, .btn-outline{
  appearance:none; 
  border:0; 
  cursor:pointer; 
  position:relative;
  padding:12px 18px; 
  border-radius:12px; 
  font-weight:800;
  text-decoration:none; 
  display:inline-flex; 
  align-items:center; justify-content:center;
}
.btn-neon{
  color:#14246D; 
  background:var(--cepeg-color-secondary);
  box-shadow: 0 0 24px rgba(248,163,3,.35), 0 4px 18px rgba(0,0,0,.35);
}
.btn-neon:hover{ filter:brightness(1.05); transform:translateY(-2px); }
.btn-outline{
  color:var(--ink);
  border: 2px solid #14246d;
  background:linear-gradient(135deg, rgba(26,26,46,.35), rgba(13,13,26,.35));
  box-shadow: 0 0 18px rgba(0,122,255,.18) inset;
}
.btn-outline:hover{ border-color:#5b74ff; }

/* ====== Tarjeta 3D / Área ====== */
.cert-card-area{
  display:flex; flex-direction:column; align-items:center; gap:14px;
}
.card-helper{
  font-size:15px; 
  color:#b8c6ff; opacity:.85;
}
.flip-btn{
  border:0; background:transparent; 
  color:#98acff; 
  cursor:pointer;
  padding:6px 10px; 
  border-radius:8px;
  border:1px dashed rgba(152,172,255,.35);
}
.flip-btn:hover{ color:#cfe0ff; border-color:#cfe0ff; }

/* ====== Certificado ====== */
.cert-3d{
  perspective:1400px;
  width:100%; 
  max-width:480px;          /* límite en pantallas grandes */
  aspect-ratio: 1.4; 
  position:relative;
}

.cert-card{
  position:absolute; inset:0;
  transform-style: preserve-3d;
  transition: transform .9s cubic-bezier(.2,.8,.2,1), scale .3s ease;
  will-change: transform, scale;
  cursor:pointer;
}

/* 🔍 Hover → zoom */
.cert-card:hover {
  transform: scale(1.05);
}

.face{
  position:absolute; inset:0; backface-visibility:hidden; border-radius:14px;
  overflow:hidden;
  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    0 0 40px rgba(0,122,255,.15);
  background: #0e1130;
  border:1px solid rgba(91,116,255,.25);
}
.face img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.face-back{ transform: rotateY(180deg); }

/* Estado girado (solo con botón o click) */
.cert-card.is-flipped{ transform: rotateY(180deg); }




/* ====== Responsive ====== */
@media (max-width: 980px){
  .cert-wrapper{
    grid-template-columns: 1fr;
    gap:36px;
  }
  .cert-info{ text-align:center; }
  .cert-list li{ justify-content:center; }
  .cert-cta{ justify-content:center; }
  .cert-logos{ justify-content:center; }
}
        
        .container-suscripcion {
          margin-top: 220px!important; /* Valor por defecto en pantallas grandes */
        }
        
        /* Pantallas muy grandes (monitores 20" o más, >=1600px) */
        @media (min-width: 1600px) {
          .container-suscripcion {
            margin-top: 250px !important;
          }
        }
        
        /* Laptops (>=1024px y <1600px) */
        @media (max-width: 1599px) and (min-width: 1024px) {
          .container-suscripcion {
            margin-top: 220px !important;
          }
        }
        
        /* Tablets (>=768px y <1024px) */
        @media (max-width: 1023px) and (min-width: 768px) {
          .container-suscripcion {
            margin-top: 160px !important;
          }
        }
        
        /* Móviles (<768px) */
        @media (max-width: 767px) {
          .container-suscripcion {
            margin-top: 180px !important;
          }
        }

