:root {
  --verde1: #3d7a3f;
  --verde2: #8fc74a;
  --verde3: #21b354;
  --azul1: #154b7f;
  --azul2: #00afef;
}

body {
  font-family: Arial, sans-serif;
}

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../img/hero.jfif") center center / cover no-repeat;
  color: #fff;
  padding: 120px 20px;
  text-align: left;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-top: 20px;
  color: #f1f1f1;
  line-height: 1.6;
}
.hero .pqt-especial {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, 0.6); /* contorno tenue */
  border-radius: 8px;
  background: rgba(0, 48, 153, 0.1); /* fondo suave */
  color: #f1f1f1; /* color claro */
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 1rem;
  /* font-size: 0.9rem; */
}

.btn-main {
  background: #fd7b01;
  border: none;
  color: #fff;
  padding: 14px 30px;
  font-weight: bold;
}

.btn-main:hover {
  background: #cf6400;
}

.package-card {
  border: 2px solid var(--verde1);
  border-radius: 12px;
  transition: 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timer {
  background: var(--verde3);
  color: #fff;
  padding: 15px;
  font-weight: bold;
  text-align: center;
}

.guarantee {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.cta-final {
  background: var(--azul1);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

footer {
  background: var(--verde1);
  color: #fff;
  padding: 15px;
  text-align: center;
}

.badge-popular {
  background: var(--azul2);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 20px;
  position: absolute;
  top: -12px;
  right: 20px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1rem;
}

.new-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--verde3);
}

.savings {
  font-size: 0.9rem;
  color: #d9534f;
  font-weight: bold;
}

.stack-value {
  background: #fff;
  padding: 10px;
  font-size: 0.9rem;
  text-align: left;
}

.decision-strip {
  background: linear-gradient(90deg, var(--azul1), var(--verde1), var(--azul1));
  color: #fff;
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.decision-strip h4 {
  font-weight: 800;
  font-size: 2rem;
}

.decision-strip p {
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 35px;
  opacity: 0.95;
}

.decision-strip .btn-light {
  background: #fff;
  color: var(--azul1);
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: 0.3s;
}

.decision-strip .btn-light:hover {
  background: var(--azul2);
  color: #fff;
  transform: scale(1.05);
}

#paquetes {
  scroll-margin-top: 100px;
}

/* Webinar Form */
.webinar-section {
  background: #ffffff;
  padding: 60px 20px;
}

.webinar-section h2 {
  color: var(--azul1);
  font-weight: 700;
}

.webinar-section p {
  margin-bottom: 30px;
}

/* Compensar el navbar fijo al hacer scroll a un ID */
#paquete,
#webinar {
  scroll-margin-top: 70px;
  /* ajusta este valor según la altura de tu navbar */
}

/* Seccion del video*/
.video-section {
  background: linear-gradient(135deg, #ffffff, #f5fbff);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

/* NUEVA SECCION PAQUETE */
.paquete-premium {
  background: linear-gradient(135deg, var(--azul1), var(--verde1));
  color: #fff;
}

.titulo-premium {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}

.sub-premium {
  font-size: 1.2rem;
  opacity: 0.95;
}

.card-premium {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.mini-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.mini-card.destacada {
  background: #ffeb3b;
  color: #000;
  font-weight: bold;
}

.bonos-box {
  background: rgba(0, 0, 0, 0.25);
  padding: 30px;
  border-radius: 20px;
}

.bonos-box h4 {
  color: #ffeb3b;
  font-weight: 700;
}

.bonos-box ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.9;
}

.precio-box {
  text-align: center;
}

.precio-anterior {
  text-decoration: line-through;
  font-size: 1.2rem;
  opacity: 0.8;
}

.precio-actual {
  font-size: 3rem;
  font-weight: 900;
}

.apartado {
  font-size: 1.2rem;
  color: #ffeb3b;
  font-weight: bold;
}

.btn-cta-premium {
  background: #ff5722;
  border: none;
  font-weight: 800;
  padding: 18px;
  font-size: 1.2rem;
  border-radius: 15px;
  transition: 0.3s ease;
}

.btn-cta-premium:hover {
  background: #e64a19;
  transform: scale(1.03);
}

.urgencia {
  margin-top: 15px;
  font-weight: bold;
  color: #ffeb3b;
}

.timer-premium {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 15px;
  font-weight: bold;
}

.nota-legal {
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08); /* transparente elegante */
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.bonus-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.bonus-icon {
  font-size: 1.8rem;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #00465f, #222964);
  /* background: linear-gradient(135deg, #00afef, #00c851); */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.bonus-content {
  text-align: left;
}
.bonus-content strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-align: left;
}

.bonus-content span {
  font-size: 1.2rem;
  /* font-size: 0.95rem; */
  opacity: 0.85;
  color: #f1f1f1;
  text-align: left !important;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* móvil por defecto */
  gap: 20px;
}

/* Desktop: horizontal */
@media (min-width: 768px) {
  .cert-list {
    flex-direction: row;
  }

  .cert-item {
    flex: 1; /* que las 3 ocupen el mismo ancho */
  }
}

.cert-item {
  padding: 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* border-top: 4px solid #00afef; */
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

.cert-code {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.cert-desc {
  /* font-size: 0.95rem; */
  font-size: 1.2rem;
  opacity: 0.9;
  color: #f1f1f1;
}

/* Tarjeta destacada */
.cert-item.gift {
  /* border-top: 4px solid #ffeb3b; */
  background: rgba(255, 235, 59, 0.12);
}

.cert-item.gift .cert-code {
  color: #ffeb3b;
}

.cert-item.gift:hover {
  background: rgba(255, 235, 59, 0.22);
}

/* SECCION PARA QUIEN ES ESTE CURSO */
.cenm-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.cenm-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}

.cenm-header p {
  font-size: 1.15rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 50px;
}

.cenm-grid {
  display: grid;
  gap: 25px;
}

@media (min-width: 768px) {
  .cenm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cenm-card {
  display: flex;
  gap: 18px;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cenm-card:hover {
  transform: translateY(-6px);
}

.cenm-icon {
  min-width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  background: #e2e8f0;
}

.cenm-card.positive .cenm-icon {
  background: #dcfce7;
  color: #16a34a;
}

.cenm-card.neutral .cenm-icon {
  background: #f1f5f9;
  color: #64748b;
}

.cenm-card h4 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.cenm-card p {
  margin: 0;
  color: #475569;
  /* font-size: 0.95rem; */
  font-size: 1.1rem;
}

.cenm-note {
  margin-top: 50px;
  padding: 25px;
  background: #fff7ed;
  border-left: 5px solid #f97316;
  border-radius: 12px;
}

.cenm-note strong {
  display: block;
  margin-bottom: 6px;
  color: #c2410c;
}

.cenm-note p {
  margin: 0;
  color: #7c2d12;
}

/* SECCION CRONOMETRO */
.pro2026-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #001f3f, #003566);
  color: #fff;
  overflow: hidden;
}

.pro2026-header {
  text-align: center;
  margin-bottom: 40px;
}

.pro2026-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.pro2026-header p {
  font-size: 1.2rem;
  color: #ffd60a;
  font-weight: 600;
}

.pro2026-timer-box {
  text-align: center;
  margin-bottom: 50px;
}

.pro2026-label {
  font-size: 1rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.pro2026-timer {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffb703;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px 40px;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.pro2026-card {
  background: #ffffff;
  color: #1e293b;
  padding: 50px;
  border-radius: 24px;
  max-width: 1100px;
  margin: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.pro2026-grid {
  display: grid;
  gap: 25px;
}

@media (min-width: 768px) {
  .pro2026-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pro2026-item {
  padding: 25px;
  background: #f1f5f9;
  border-radius: 16px;
  text-align: center;
}

.pro2026-item.highlight {
  background: #fff3cd;
}

.pro2026-code {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.pro2026-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 40px 0;
}

.pro2026-bonuses .bonus-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.pro2026-bonuses span {
  font-size: 1.5rem;
}

.pro2026-bonuses strong {
  display: block;
  font-size: 1.05rem;
}

.pro2026-bonuses p {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
}

.pro2026-btn {
  display: block;
  margin: 40px auto 0;
  text-align: center;
  background: linear-gradient(90deg, #ffb703, #ffb803cb);
  color: #000000;
  padding: 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  max-width: 400px;
  transition: all 0.3s ease;
}

.pro2026-btn:hover {
  transform: scale(1.05);
}

.pro2026-note {
  margin-top: 30px;
  font-size: 1rem;
  /* font-size: 0.85rem; */
  text-align: center;
  color: #64748b;
}

/* SECCION DE PREGUNTAS FRECUENTES */
.cenm-faq-section {
  padding: 90px 0;
  background: #f8fafc;
}

.cenm-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--azul1);
  margin-bottom: 15px;
}

.cenm-subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto 50px;
}

.cenm-faq-wrapper {
  max-width: 800px;
  margin: auto;
}

.cenm-faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s ease;
}

.cenm-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 25px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.cenm-faq-question i {
  font-size: 1.2rem;
  transition: 0.3s ease;
  color: var(--verde1);
}

.cenm-faq-answer {
  padding: 0 25px 22px 25px;
  font-size: 0.98rem;
  color: #555;
  display: none;
  line-height: 1.6;
}

.cenm-faq-item.active .cenm-faq-answer {
  display: block;
}

.cenm-faq-item.active .cenm-faq-question i {
  transform: rotate(45deg);
}

/* SECCION PAQUETE PARA TI */
.cenm-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.cenm-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cenm-header p {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* Imagen */
.cenm-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Lista */
.cenm-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Item */
.cenm-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.cenm-item:hover {
  transform: translateY(-3px);
}

/* Icono */
.cenm-check {
  background: #28a745;
  color: #fff;
  font-size: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Texto */
.cenm-item p {
  margin: 0;
  color: #333;
  font-size: 15px;
}

/* Nota */
.cenm-note {
  margin-top: 40px;
  background: #fff3cd;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
}

.cenm-note strong {
  display: block;
  margin-bottom: 5px;
}

/* SECCION NO TE PIERDAS LOS BONOS */
.pro2026-bonuses {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 25px 0;
}

/* TARJETA BASE */
.bonus-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid #e6e6e6;
  transition: all 0.25s ease;
}

.bonus-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* DESTACADO */
.bonus-item.featured {
  border: 2px solid #28a745;
  background: linear-gradient(135deg, #f6fff8, #ffffff);
}

/* BADGE SUPERIOR */
.bonus-badge {
  font-size: 11px;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

/* CONTENIDO */
.bonus-body {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ICONO */
.bonus-icon {
  font-size: 26px;
  background: #f1f5f9;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXTO */
.bonus-info {
  flex: 1;
}

.bonus-info h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

.bonus-info p {
  margin: 5px 0 0;
  font-size: 13.5px;
  color: #666;
}

/* VALOR (lado derecho) */
.bonus-value {
  font-size: 14px;
  font-weight: 700;
  color: #28a745;
  background: #e9f7ef;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.bonus-value.discount {
  color: #007bff;
  background: #eaf3ff;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .bonus-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .bonus-value {
    margin-top: 10px;
  }
}

/* SECCION CALL TO ACTION FINAL */
.cta-urgencia {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-container {
  max-width: 700px;
  margin: auto;
}

.cta-urgencia h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-subtext {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 30px;
}

/* TIMER */
.cta-timer-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.cta-timer-box span {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #e2e8f0;
}

.cta-timer {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #22c55e;
}

/* BOTÓN */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

/* ALERTA */
.cta-warning {
  margin-top: 20px;
  font-size: 13px;
  color: #f87171;
}
