
    :root {
      --bg-dark: #0a0a0a;
      --bg-gradient: linear-gradient(135deg, #000000, #1a1a1a);
        --grad-page: radial-gradient(
      1200px 600px at 8% 10%,
      rgba(162, 255, 94, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 90% 10%,
      rgba(5, 13, 15, 0.075),
      transparent 55%
    ),
    linear-gradient(180deg, #151516 0%, #000000 100%);
      --gold: #d4af37;
      --gold-soft: #f1e0a6;
      --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
     --gold-gradient-2: linear-gradient(135deg, #2b2b2b 0%, #3f3f3f 50%, #a6a6a6 100%);

      --text: #f5f5f5;
      --muted: #c2c2c2;
      --radius: 14px;
      --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --shadow: 0 4px 20px rgba(212, 175, 55, 0.15);

      --radius-lg: 20px;
      --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.2);
      --gold-light: #E8D49A;
      --text-muted: #A0A0A0;
      --success: #10B981;
      --warning: #F59E0B;
      --urgent: #EF4444;
    }
/* 



  /* Hero Section - CAMBIADO A programa-hero */
.programa-hero {
    background: 
        radial-gradient(
            1200px 600px at 8% 10%,
            rgba(162, 255, 94, 0.1),
            transparent 60%
        ),
        radial-gradient(
            900px 600px at 90% 10%,
            rgba(5, 13, 15, 0.1),
            transparent 55%
        ),
        linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)), 
        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text);
    padding: 120px 0; /* ✅ Mantiene la altura */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.programa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0.05;
    z-index: 0;
}

.programa-hero .programa-container {
    position: relative;
    z-index: 1;
}

/* 🔹 Bloque rojo del programa */
.programa-label {
  position: absolute;
  left: 15%;
  top: 65%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(72, 149, 239, 0.25)); /* Dorado + azul suave */
  backdrop-filter: blur(8px); /* 👈 efecto vidrio */
  color: #f3f3f3;
  padding: 15px 28px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.15);
  text-align: left;
  animation: fadeInUp 1.2s ease forwards;
  width: fit-content;
  z-index: 2;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

/* ✨ Sutil brillo al pasar el mouse */
.programa-label:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(72, 149, 239, 0.35));
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25), 0 0 35px rgba(72, 149, 239, 0.25);
  transform: translate(-50%, -50%) scale(1.03);
}

/* 💫 Línea de brillo animado interno */
.programa-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  /* animation: shine 6s infinite linear; */
  border-radius: inherit;
  z-index: 1;
  opacity: 0.4;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}


.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f1f1f1;
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
}

/* ✨ Línea decorativa elegante */
.section-divider {
  position: relative;
  width: 120px;
  height: 3px;
  margin: 0.5rem auto 3rem auto;
  border-radius: 50px;
  background: linear-gradient(90deg, #d4af37, #60a5fa, #d4af37);
  background-size: 200% 100%;
  animation: gradientMove 5s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* 💫 Movimiento sutil del degradado */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 🪶 Opción alternativa: línea más discreta para secciones secundarias */
.section-divider::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 25%;
  width: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
}


.section-divider-2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 25%;
  width: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
}



.programa-label .programa-subtitulo {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.programa-label .programa-titulo {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* 🔹 Título dentro del hero */
.programa-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.programa-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--muted);
}

/* 🔹 Animación suave */
@keyframes fadeInUp-2 {
    0% {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


/* 🔹 Ajuste responsive */
@media (max-width: 768px) {
    .programa-label {
        top: 68%; /* un poco más abajo en móviles */
         left: 5%;
        padding: 12px 18px;
    }

    .programa-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  /* animation: shine 6s infinite linear; */
  border-radius: inherit;
  z-index: 1;
  opacity: 0.4;
}

    .programa-label .programa-titulo {
        font-size: 1.3rem;
    }

    .programa-hero h1 {
        font-size: 2.2rem;
    }
}

 .perfil-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .perfil-image {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem; /* 🔹 Espacio entre la imagen y el párrafo */
}


.perfil-text, .perfil-image {
            flex: 1;
            min-width: 300px;
        }

.perfil-image img {
            max-width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }


.perfil-image img {
  width: 100%;
  max-width: 470px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.perfil-image img:hover {
  transform: scale(1.03);
}


  /* Tarjeta de información mejorada */
    .program-card {
      background: rgba(20, 20, 20, 0.8);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 3.5rem;
      border: 1px solid rgba(212, 175, 55, 0.2);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
      position: relative;
      overflow: hidden;
      max-width: 900px;
      width: 100%;
    }

     .program-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: var(--gold-gradient);
    }

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}


/* ✅ CENTRADO en pantallas pequeñas */
@media (max-width: 768px) {
  .card-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .card-duration {
    margin-top: 0.5rem;
  }
}


    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--gold-soft);
    }



.card-duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.3);
  width: fit-content;
}


.phrase-wrapper {
  text-align: center;
  position: relative;
  margin: 20px auto;
  padding: 5px 2px;
}

.evolution-text {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #d9b65d;
  border-top: 1px solid rgba(217,182,93,0.25);
  border-bottom: 1px solid rgba(217,182,93,0.25);
  display: inline-block;
  padding: 8px 25px;
  transition: all 0.3s ease;
}



.evolution-text-2 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f1e3bdd5;
  border-top: 1px solid rgba(217,182,93,0.25);
  border-bottom: 1px solid rgba(217,182,93,0.25);
  display: inline-block;
  padding: 8px 25px;
  transition: all 0.3s ease;
}

.evolution-text:hover {
  color: #f1d78a;
  letter-spacing: 2px;
  border-top-color: rgba(241,215,138,0.4);
  border-bottom-color: rgba(241,215,138,0.4);
}


 .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .card-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }


         .card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }


   .program-price {
      /* font-family: 'Playfair Display', serif; */

      font-family: Verdana, Geneva, Tahoma, sans-serif;
      /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
      font-size: 2rem;
      color: var(--gold);
      font-weight: 700;
    }

    .price-note {
      color: var(--muted);
      font-size: 0.9rem;
      margin-top: 0.3rem;
    }

    .enroll-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 1rem 2rem;
      background: var(--gold-gradient);
      color: #000;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      
    }

    

    .enroll-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    }


      /* 🔹 Ajuste para pantallas móviles */
  @media (max-width: 600px) {
    .program-price {
      font-size: 2rem;
    }

    .price-note {
      font-size: 0.95rem;
    }

   
  }

  @media (max-width: 600px) {
  .enroll-btn {
    width: 80%;           /* ocupa el 80% del ancho del móvil */
    display: flex;        /* mantiene el ícono y texto alineados */
    justify-content: center; /* centra el contenido interno */
    margin: 0 auto;       /* 👈 centra el botón dentro de su contenedor */
    font-size: 0.95rem;
  }
}


 .old-price {
    text-decoration: line-through; /* 👈 tachado */
    color: #888;                   /* gris sutil */
    font-size: 1rem;
    margin-right: 8px;
  }

  .new-price {
    color: #C8A552; /* dorado premium o color principal de promoción */
    font-size: 1.6rem;
    font-weight: 700;
  }

  

/* .info-grid {
  display: grid;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
} */

/* 🩶 Tarjeta base elegante y tecnológica */
.info-card {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: all 0.35s ease;
  color: #eaeaea;
  backdrop-filter: blur(8px);
  position: relative;
}

/* ✨ Detalle decorativo lateral (línea de luz sutil) */
.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, #00c6ff, #0072ff);
  opacity: 0.4;
  transition: opacity 0.4s ease, width 0.3s ease;
  border-radius: 3px;
}

.info-card:hover::before {
  opacity: 0.8;
  width: 4px;
}

/* 🎓 Encabezado sobrio y moderno */
.info-card h3 {
  background: rgba(255, 255, 255, 0.03);
  color: #f6f7f8;
  padding: 14px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}


/* 🧠 Ícono opcional junto al título */
.info-card h3 i {
  color: #66b8ff;
  font-size: 1rem;
}

/* 📄 Cuerpo de texto */
.info-card p {
  margin: 0;
  padding: 16px 20px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #d2d2d2;
}


/* 💫 Hover con movimiento sutil */
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 114, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}


/* ✨ Animación de resplandor sutil */
.info-card::after {
  content: "";
  position: absolute;
  /* inset: 0; */
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  animation: cardLight 8s ease-in-out infinite;
  opacity: 0.4;
}




/* ===== INFO SECTION FIX ===== */


/* Centrado real del título */
.info-section .section-title-one-container {
  margin-bottom: 1.5rem;
}

/* Grid real y centrado */




@keyframes cardLight {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .info-grid {
    gap: 16px;
    max-width: 100%;
  }

  .info-card h3 {
    font-size: 0.95rem;
    padding: 12px 16px;
  }

  .info-card p {
    font-size: 0.9rem;
    padding: 12px 16px;
  }
}

section {
  padding: 1rem 1.5rem;
  color: #f1f1f1;
  /* background: linear-gradient(180deg, #0a0a0a, #161616); */
  position: relative;
  overflow: hidden;
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
} */

/* ===== TÍTULOS ===== */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}


/* === Título elegante de sección === */
.section-title-medio {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.4rem;
  text-align: center;
  color: var(--gold-soft);
  position: relative;
  display: inline-block;
  margin: 1.5rem auto 2rem;
  padding-bottom: 0.6rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
  background: linear-gradient(90deg, var(--gold-soft), #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}


/* === Título elegante de sección === */
.section-title-one { 
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
  color: var(--gold-soft);
  position: relative;
  display: block; /* ✅ Permite que el texto se centre correctamente */
  margin: 1.5rem auto 2rem;
  padding-bottom: 0.6rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
  width: fit-content; /* centra el bloque dentro del contenedor */
  background: linear-gradient(90deg, var(--gold-soft), #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

/* Contenedor para asegurar centrado */
.section-title-one-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 🔹 Modo móvil */
@media (max-width: 768px) {
  .section-title-one {
      font-weight: 800;
    font-size: 2rem;
    line-height: 1.2;
    margin: 1.2rem auto;
  }
}



/* Efecto hover sutil */
.section-title-medio:hover {
  transform: translateY(-3px);
}

.section-title-medio:hover::after {
  width: 100px;
  background: linear-gradient(90deg, #d4af37, var(--gold-soft));
}

/* 🔹 Ajuste para móvil */
@media (max-width: 768px) {
  .section-title-medio {
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: bold;
  }

}



  
.section-divider-2 {
    height: 1px;
    max-width: 720px;
    margin: 8px auto 16px; /* 👈 más compacto y estable */

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
}

.section-title-one {
    margin-bottom: 6px;  /* evita acumulación */
    line-height: 1.2;    /* compacta visual */
}

.perfil-image {
    margin-top: 50px; /* separación real y controlada */
}

.info-title {
  text-align: center;
  justify-content: center;
}


@media (max-width: 768px) {


  .section-title-one {
    font-size: 2rem;
    text-align: center;
  }
}



.section-heading {
  width: 100%;              /* 🔑 CLAVE */
  text-align: center;
  margin: 0 auto 48px;
  padding: 0 16px;

  font-size: clamp(2rem, 4vw, 2.6rem);
}

.heading-gold {
  background: linear-gradient(
    135deg,
    #f3f0e6 0%,
    #d6c58b 30%,
    #b9a24a 55%,
    #eee6c8 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  display: inline-block;     /* clave para degradado */
  line-height: 1.2;
  margin: 0 auto;
}



      
