
    :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;
    }
/* 

        /* RESET COMPLETO Y PREVENCIÓN DE OVERFLOW */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
            max-width: 100%;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
            position: relative;
        }
/* html,
body {
  height: 100%;
  scroll-behavior: smooth;
} */

    body {
      background: var(--grad-page);
      color: var(--text);
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      padding-top: 55px;
      line-height: 1.7;
      
    }

   /* Navegación mejorada */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0.2rem;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
  }

  nav.scrolled {
    padding: 0.1rem 1rem;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  }



  nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.4s ease, background 0.3s ease;
}

/* 🔹 Se oculta al hacer scroll hacia abajo */
nav.hide {
  transform: translateY(-100%);
}

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-logo img {
    height: 40px;      /* Ajusta según tu diseño */
    width: auto;       /* Mantiene proporción */
    display: block;
    margin-left: 25px;
}

.nav-logo span{
   font-family: 'Playfair Display', serif;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

nav ul.active {
  display: block;
}

nav ul li a {
  text-decoration: none;
  color: #eee;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* 🔹 Efecto activo o resaltado */
nav ul li a.active {
  color: #d4af37; /* Dorado elegante */
  border-bottom: 2px solid #d4af37;
}

/* 🔹 Hover */
nav ul li a:hover {
  color: #f5d67a;
}

/* Móvil */
@media (max-width: 768px) {
   nav {
  
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0.9rem;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
  }
    nav.scrolled {
    padding: 0.7rem 2rem;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  nav ul.active {
    display: flex;
  }

  .mobile-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
  }
          .nav-logo img {
    height: 40px;      /* Ajusta según tu diseño */
    width: auto;       /* Mantiene proporción */
    display: block;
  margin-left: 0;
}
}


/* 🔹 En móviles no se aplica el efecto */
@media (max-width: 768px) {
  nav.hide {
    transform: none;
  }
}


  /* Logo refinado */
  .logo {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .logo i {
    font-size: 1.6rem;
  }

  /* Centrado elegante del menú */
  nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
  }

  nav ul li a {
    color: var(--text);
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    text-decoration: none;
  }

  nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
  }

  nav ul li a:hover {
    color: var(--gold);
  }

  nav ul li a:hover:after {
    width: 100%;
  }

/* Efecto líquido brillante y moderno */
.btn.btn-primary {
  position: relative;
  background: linear-gradient(120deg, #d4af37, #fff3b0, #d4af37);
  background-size: 200% 200%;
  animation: goldFlow 12s ease-in-out infinite;
  color: #000;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.205);
  overflow: hidden;
  text-decoration: none;
}


.btn.btn-primary1 {
  position: relative;
  background: linear-gradient(120deg, #d4af37, #fff3b0, #d4af37);
  background-size: 200% 200%;
  animation: goldFlow 12s ease-in-out infinite;
  color: #000;
  padding: 1rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.205);
  overflow: hidden;
  text-decoration: none;
}

.contacto-invitacion a {
  text-decoration: none !important;
  
  
  outline: none !important;
}



.contacto-invitacion {
  text-align: center;
  margin-top: 40px;
}

.contacto-invitacion p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333;
}

/* Botón con animación líquida elegante */
.whatsapp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(120deg, #25D366, #1ebe57, #128C7E);
  background-size: 300% 300%;
  animation: colorFlow 4s ease-in-out infinite;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.whatsapp-btn i {
  font-size: 1.3em;
}


.enlace-contacto {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
}

.enlace-contacto:hover {
    text-decoration: underline;
}

/* Animación de flujo de color */
@keyframes colorFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* Brillo animado fluido */
@keyframes goldFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pulsación sutil */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.151); }
  50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.288); }
  100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
}

/* Añadir la pulsación al botón */
.btn.btn-primary {
  animation: goldFlow 12s ease-in-out infinite, pulseGlow 2.5s ease-in-out infinite;
}

/* Hover: más brillante y definido */
.btn.btn-primary:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}


  /* Botón menú móvil */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
  }

  /* ==== RESPONSIVE ==== */
  @media (max-width: 768px) {
    nav {
      justify-content: space-between;
      align-items: center;
    }

    nav ul {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1.8rem;
      padding: 2rem;
      z-index: 999;
    }

    nav ul.active {
      display: flex;
    }

    /* Mostrar botón Contacto solo en móvil */
    .btn.btn-primary {
      display: block;
    }

    /* Ocultar botón Contacto en escritorio */
    @media (min-width: 769px) {
      .btn.btn-primary {
        display: none;
        z-index: 10;
      }
    }

    .mobile-menu-btn {
      display: block;
      z-index: 1001;
    }
  }

             /* Botones hero */
    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s ease-out 0.8s both;
      justify-content: center;
        margin-top: 40px; /* ajusta según necesites */
         animation: fadeInUp 1s ease-out 0.4s both;
            z-index: 10;
          
    }


     .hero-buttons-1 {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s ease-out 0.8s both;
      justify-content: center;
        margin-top: 40px; /* ajusta según necesites */
         animation: fadeInUp 1s ease-out 0.4s both;
            z-index: 10;
          
    }


    .hero-buttons a {
  text-decoration: none;
   display: inline-flex;
  align-items: center;
  gap: 10px; /* aumenta este valor para más separación */
  
}


    .hero-buttons-1 a {
  text-decoration: none;
   display: inline-flex;
  align-items: center;
  gap: 4px; /* aumenta este valor para más separación */
  
}


  
  /* 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: 5%;
  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: -100%;
  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;
}

@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 {
    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 */
        padding: 12px 18px;
    }

    .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);
        }

  
  

 
        /* Acordeón Moderno */
  /* Acordeón Moderno */
        .accordion-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .accordion {
            margin-bottom: 1.2rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: var(--radius);
            overflow: hidden;
            background: rgba(30, 30, 30, 0.7);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .accordion:hover {
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
        }

        .accordion-header {
            padding: 1.8rem 2.5rem;
            background: rgba(20, 20, 20, 0.8);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            position: relative;
        }

        .accordion-header:hover {
            background: rgba(26, 26, 26, 0.9);
        }

        .accordion-header::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--gold-gradient);
            opacity: 0;
            transition: var(--transition);
        }

        .accordion.active .accordion-header::before {
            opacity: 1;
        }

        .accordion-title {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex: 1;
        }

        .accordion-icon {
            color: var(--gold);
            font-size: 1.4rem;
            width: 24px;
            text-align: center;
            transition: none !important;
            transform: none !important;
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 1.3rem;
            color: var(--gold-soft);
            font-weight: 600;
            font-family: 'Playfair Display', serif;
        }

        .accordion-indicator {
            color: var(--gold);
            transition: var(--transition);
            font-size: 1.2rem;
            min-width: 20px;
        }

        .accordion.active .accordion-indicator {
            transform: rotate(180deg);
        }

        .accordion-content {
            padding: 0 2.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            background: rgba(25, 25, 25, 0.5);
        }

        .accordion.active .accordion-content {
            /* Eliminamos la altura máxima fija para permitir contenido ilimitado */
            max-height: none;
            padding: 1.5rem 2.5rem;
        }

        .accordion-content ul {
            list-style: none;
            margin: 0;
        }

        .accordion-content li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.8rem;
            color: var(--muted);
            transition: var(--transition);
        }

        .accordion-content li:hover {
            color: var(--text);
            transform: translateX(5px);
        }

        .accordion-content li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
            transition: var(--transition);
        }

        .accordion-content li:hover::before {
            transform: translateX(3px);
        }

        .phase-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gold-gradient);
            color: #000;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .certification-section {
            background: rgba(212, 175, 55, 0.1);
            border-radius: var(--radius);
            padding: 2rem;
            margin-top: 2rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            text-align: center;
        }

        .certification-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--gold-gradient);
            color: #000;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 1rem;
            font-size: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }

            .accordion-header {
                padding: 1.5rem 1.5rem;
            }

            .accordion-header h3 {
                font-size: 1.2rem;
                font-weight: 700;
            }

            .accordion-content {
                padding: 0 1.5rem;
            }

            .accordion.active .accordion-content {
                padding: 1.5rem;
            }

            .accordion-title {
                gap: 1rem;
            }
            
            .certification-section {
                padding: 1.5rem;
            }
            
            .certification-badge {
                flex-direction: column;
                padding: 1rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.8rem;
            }

            .accordion-header {
                padding: 1.2rem 1.2rem;
            }

            .accordion-header h3 {
                font-size: 1rem;
            }
            
            .accordion-title {
                gap: 0.8rem;
            }
            
            .accordion-icon {
                font-size: 1.2rem;
            }
        }
  
    /* HERO mejorado */
    /* header.hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 8rem 1.5rem 4rem;
      position: relative;
      overflow: hidden;
      background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12), transparent 60%), 
                  radial-gradient(circle at 80% 70%, rgba(83, 188, 40, 0.08), transparent 60%),
                  linear-gradient(120deg, #000, #111);
    } */

            header.hero {
            background: 
                linear-gradient(to bottom right, rgba(0, 0, 0, 0.705), rgba(34, 24, 5, 0.95)), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=60') center/cover no-repeat;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;  

            

            
        }
            header.hero1 {
            background: 
                linear-gradient(to bottom right, rgba(0, 0, 0, 0.26), rgba(34, 24, 5, 0.95)), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=60') center/cover no-repeat;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;

              /* 🔹 Desvanecido inferior más sutil y profesional */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.603) 75%,
    /* mantiene la parte visible */ rgba(0, 0, 0, 0.486) 85%,
    /* empieza el fade */ rgba(0, 0, 0, 0.4) 93%,
    /* suaviza transición */ rgba(0, 0, 0, 0) 100% /* totalmente transparente */
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 0.8) 85%,
    rgba(0, 0, 0, 0.4) 93%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-size: cover;
  mask-size: cover;
  /* pointer-events: none; */

            

        }

        


           /* SECCIÓN HERO PRINCIPAL */
    .hero-section {
      background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.918) 0%, rgba(34, 24, 5, 0.952) 100%),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;

      
    }

    

            /* Capa de contenido - completamente separada del canvas */
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1000px;
            padding: 0.5rem;
        }

               /* Contenedor de contenido hero */
    .hero-content {
      position: relative;
      z-index: 4;
      max-width: 1200px;
      margin: 0 auto;
      /* padding: 0 2rem; */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
        margin-top: 60px; /* Aumenta este valor para bajarlo más */
    }

        /* Texto principal hero */
    .hero-text {
      padding: 3rem 0;
      width: 100%;
      max-width: 900px;
    }

.hero-badge {
 display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(212, 175, 55, 0.1);
      color: var(--gold);
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(212, 175, 55, 0.3);
}







    
     .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      line-height: 1.25;
      color: var(--gold-soft);
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }
       .title-highlight {
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      display: inline-block;
    }

      .title-highlight::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 100%;
      height: 2.5px;
      background: var(--gold-gradient);
      transform: scaleX(0);
      transform-origin: left;
      animation: expandLine 1s ease-out 1s forwards;
    }

    
      .hero-description {
      color: var(--muted);
      font-size: 1.3rem;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      animation: fadeInUp 0.8s ease-out 0.4s both;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    
      /* Estadísticas */
    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-bottom: 3rem;
      animation: fadeInUp 0.8s ease-out 0.6s both;
      justify-content: center;
    }

      .stat-item {
      text-align: center;
      padding: 1rem;
    }

        .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--gold);
      display: block;
      line-height: 1;
    }

     .stat-label {
      font-size: 1rem;
      color: var(--muted);
      margin-top: 0.5rem;
    }

    header.hero h1 {
      font-family: 'Playfair Display';
      font-size: 2.2rem;
      line-height: 1.2;
      color: var(--gold-soft);
      text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

             header.hero h1 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease-out;
        }


    header.hero1 h1 {
      font-family: 'Playfair Display';
      font-size: 2.8rem;
      line-height: 1.2;
      color: var(--gold-soft);
      text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 10;
      max-width: 900px;
    }

             header.hero1 h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            line-height: 1.2;
            color: var(--gold-soft);
            margin-bottom: 1.5rem;
            z-index: 10;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease-out;
        }




        


              .title-accent {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

         #contenido .header p {
    margin: 0 auto;
    max-width: 700px;
    font-size: 1.1rem;
    color: #cbd5e0;
    text-align: center;
    line-height: 1.6;
  }


        header.hero p {
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.7;
            animation: fadeInUp 1s ease-out 0.2s both;
        }


    header.hero p {
      max-width: 700px;
      margin: 0 auto 2.5rem;
      color: var(--muted);
      font-size: 1.2rem;
      line-height: 1.7;
      position: relative;
      z-index: 2;
    }

        /* ===== HERO SECTION ===== */
    .hero {
      background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.555), rgba(34, 24, 5, 0.425)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=60') center/cover no-repeat;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
    }

          
        /* Fondo semitransparente para el contenido */
        .content-background {
            background: rgba(10, 10, 10, 0.75);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 3.5rem 3rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
        }

        
        /* Efecto de brillo sutil en los bordes */
        .content-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .content-background::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }



    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2rem;
      margin: 0.5rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: var(--radius);
      transition: var(--transition);
      font-weight: 500;
      background: transparent;
      position: relative;
     z-index: 10;
      overflow: hidden;
    }

    .btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
    }

    .btn:hover:before {
      left: 100%;
    }

    .btn:hover {
      background: var(--gold);
      color: #000;
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    }

    .btn-primary {
      background: var(--gold-gradient);
      color: #000;
      border: none;
      z-index: 10;
    }


    
        .btn-primary {
            background: var(--gold-gradient);
            color: #000;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
            z-index: 10;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            border-color: rgba(212, 175, 55, 0.5);
        }

              /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


    /* Canvas del efecto 3D */
    /* #canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    } */
         #canvas1 {
            width: 100%;
            height: 100%;
            opacity: 0.51; /* Opacidad reducida para mejor integración con la imagen */
            z-index: -2;
        }

            #canvas2 {
            width: 100%;
            height: 100%;
            opacity: 0.3; /* Opacidad reducida para mejor integración con la imagen */
        }


            .canvas-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }


        
        /* Efectos de partículas decorativas - detrás del contenido */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
          .particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.15;
            animation: float 20s infinite linear;
        }

        

         @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.15;
            }
            90% {
                opacity: 0.15;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }


             
    /* Efectos de forma geométrica */
    .geometric-shapes {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
      opacity: 0.1;
    }

    .shape {
      position: absolute;
      border: 2px solid var(--gold);
      border-radius: 8px;
    }

    .shape-1 {
      top: 20%;
      right: 10%;
      width: 100px;
      height: 100px;
      animation: rotate 20s linear infinite;
    }

    .shape-2 {
      top: 60%;
      right: 20%;
      width: 60px;
      height: 60px;
      animation: rotate 15s linear infinite reverse;
    }

    .shape-3 {
      top: 40%;
      right: 30%;
      width: 80px;
      height: 80px;
      animation: rotate 25s linear infinite;
    }


    
    /* Animaciones */
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes expandLine {
      to {
        transform: scaleX(1);
      }
    }

    @keyframes floatAlternate {
      0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 0.15;
      }
      90% {
        opacity: 0.15;
      }
      100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
      }
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

         /* Indicador de scroll */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            color: var(--gold);
            font-size: 1.5rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }
/* Indicador de scroll minimalista y elegante */
.scroll-indicator1 {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  cursor: pointer;
  animation: floatUpDown1 2.8s ease-in-out infinite;
  opacity: 0.85;
   bottom: 120px; /* antes era 25px o 28px, súbelo más con un número mayor */
}

/* Ícono limpio y moderno */
.scroll-indicator1 i {
  color: #e0e0e0; /* gris claro elegante */
  font-size: 1.8rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Movimiento vertical suave */
@keyframes floatUpDown1 {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

/* Hover discreto */
.scroll-indicator1:hover i {
  transform: translateY(3px) scale(1.05);
  opacity: 1;
}

     
    /* SECCIÓN DE INFORMACIÓN DEL PROGRAMA */
    .program-info-section {
      background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
      padding: 6rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .program-info-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

.countdown-container {
    max-width: 900px;  /* o el ancho que estés usando */
    width: 100%;
    margin: 0 auto;
}

    .section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; /* separación entre elementos */
}

     .section-header {
      text-align: center;
      margin-bottom: 4rem;
      max-width: 800px;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(212, 175, 55, 0.1);
      color: var(--gold);
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .section-badge.glass {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto; /* centra horizontalmente */
  width: fit-content;

  
}



 


    .section-header {
  text-align: center;
  margin: 0 auto 4rem auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



@media (max-width: 768px) {
  .section-title {
    font-size: 2.1rem;
  }

  .section-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }
}


      
    /* 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;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.2rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      transition: var(--transition);
    }

    .feature-item:hover {
      background: rgba(212, 175, 55, 0.05);
      transform: translateY(-3px);
    }

    .feature-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(212, 175, 55, 0.1);
      border-radius: 8px;
      color: var(--gold);
      flex-shrink: 0;
    }

    .feature-content h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--text);
    }

    .feature-content p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.5;
    }

     .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;
  }
        /* 🔹 Cinta diagonal */
        .ribbon {
            position: absolute;
            top: 20px;
            right: -45px;
            background: var(--gold-gradient);
            color: white;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 8px 45px;
            transform: rotate(45deg);
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            z-index: 10;
        }

    .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;
}

@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: 6rem 2rem;
  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: 2.3rem;
    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-title-medio::after {
    width: 50px;
  }
}


.section-title i {
  color: #d4af37;
  font-size: 1.6rem;
}

.section-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #5ca9ff, #d4af37);
  margin: 1rem auto 3rem auto;
  border-radius: 50px;
  animation: dividerGlow 5s infinite linear;
}

@keyframes dividerGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== METODOLOGÍAS ===== */
.metodologias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.metodologia-card {
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.metodologia-card i {
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.metodologia-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: #fff;
  font-weight: 600;
}

.metodologia-card p {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.metodologia-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}
.metodologia-card:hover i {
  color: #5ca9ff;
}

/* ===== PERFIL ===== */
.perfil-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.perfil-text {
  flex: 1;
  min-width: 280px;
  line-height: 1.7;
}

.perfil-text p {
  color: #ddd;
  font-size: 1rem;
}

.perfil-text .edad {
  margin-top: 20px;
  color: #d4af37;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.perfil-image img {
  width: 100%;
  max-width: 410px;
  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);
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.faq-item h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.faq-item h3 i {
  color: #5ca9ff;
  font-size: 1.2rem;
}

.faq-item p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .section-title { font-size: 1.8rem; gap: 0.6rem; }
  .perfil-content { flex-direction: column-reverse; gap: 2rem; }
  .perfil-image img { max-width: 100%; }
  .metodologia-card, .faq-item { padding: 1.5rem; }
}



        /* FAQ Mejorado con Acordeón */
        .faq {
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 30% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }




    /* Secciones mejoradas */
    section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 6rem 1.5rem;
      position: relative;
      z-index: 2;
    }

    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 2rem 0;
    }
     .section-divider-2 {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 2rem 0;
      margin-top: -12px;
    }

    section h2 {
      font-family: 'Playfair Display';
      color: var(--gold-soft);
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
      text-align: center;
      line-height: 1.2;
    }

    section h3 {
      font-family: 'Playfair Display';
      color: var(--gold-soft);
      font-size: 1.6rem;
      margin: 2rem 0 1rem;
    }

    section p {
      color: var(--muted);
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    section ul {
      text-align: left;
      max-width: 100%;
      margin: 1.5rem 0;
      color: var(--muted);
      line-height: 1.8;
    }

    section ul li {
      margin-bottom: 0.8rem;
      position: relative;
      padding-left: 1.5rem;
    }

    /* section ul li:before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 1.2rem;
    } */

    .icon-title {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 2rem;
    }

    .icon-title i {
      color: var(--gold);
      font-size: 1.8rem;
    }

    /* Cards para secciones */
    .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .card {
      background: rgba(30, 30, 30, 0.6);
      border-radius: var(--radius);
      padding: 2.5rem;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid rgba(212, 175, 55, 0.1);
      position: relative;
      overflow: hidden;
      text-align: left;
    }

    .card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--gold-gradient);
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
      border-color: rgba(212, 175, 55, 0.3);
    }

    .card h3 {
      font-family: 'Playfair Display';
      color: var(--gold-soft);
      font-size: 1.4rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .card h3 i {
      color: var(--gold);
    }

    .card p {
      text-align: left;
      margin-bottom: 0;
    }

    /* Modelo evolutivo */
    .evolution-model {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin: 3rem 0;
    }

    .evolution-phase {
      background: rgba(30, 30, 30, 0.6);
      border-radius: var(--radius);
      padding: 2.5rem;
      border: 1px solid rgba(212, 175, 55, 0.1);
      position: relative;
      overflow: hidden;
    }

    .evolution-phase:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--gold-gradient);
    }

    .phase-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

.phase-number {
  width: 45px;
  height: 45px; /* Igual al ancho para mantener forma circular */
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: 'Playfair Display';
  flex-shrink: 0; /* Evita que se deforme en contenedores flex */
}

.acc-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-right: 8px;
  vertical-align: middle;
}


/* Ajustes responsivos para móviles */
@media (max-width: 600px) {
  .phase-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}


/* Contenedor centrado */
.modelo-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Imagen responsive */
.modelo-img {
    width: 60%;        /* tamaño en escritorio */
    max-width: 350px;  /* límite para pantallas grandes */
    height: auto;
    border-radius: 15px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .modelo-img {
        width: 85%;    /* más grande en móvil */
    }
}






/* Contenedor centrado */
.modelo1-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Imagen responsive */
.modelo1-img {
    width: 50%;        /* tamaño en escritorio */
    max-width: 260px;  /* límite para pantallas grandes */
    height: auto;
    border-radius: 15px;
    margin-top: -52px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .modelo1-img {
        width: 75%;    /* más grande en móvil */
    }
}




/* Contenedor centrado */
.modelo2-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Imagen responsive */
.modelo2-img {
    width: 30%;        /* tamaño en escritorio */
    max-width: 180px;  /* límite para pantallas grandes */
    height: auto;
    border-radius: 15px;
    margin-top: -52px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .modelo2-img {
        width: 45%;    /* más grande en móvil */
    }
}



.accent-text {
    color: #ff7f50;
}



    .phase-title {
      font-family: 'Playfair Display';
      color: var(--gold-soft);
      font-size: 1.5rem;
      margin: 0;
    }

    .phase-subtitle {
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 1rem;
      font-style: italic;
    }

    /* Sección de acreditación */
    .accreditation-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .accreditation-item {
      background: rgba(30, 30, 30, 0.6);
      border-radius: var(--radius);
      padding: 2rem;
      border: 1px solid rgba(212, 175, 55, 0.1);
      transition: var(--transition);
    }

    .accreditation-item:hover {
      transform: translateY(-5px);
      border-color: rgba(212, 175, 55, 0.3);
    }

    .accreditation-item h4 {
      color: var(--gold-soft);
      font-size: 1.2rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .accreditation-item h4 i {
      color: var(--gold);
    }

    /* Sección de contenido estratégico */
    .content-module {
      margin-bottom: 3rem;
      padding: 2rem;
      background: rgba(30, 30, 30, 0.4);
      border-radius: var(--radius);
      border-left: 4px solid var(--gold);
    }

    .content-module h3 {
      color: var(--gold-soft);
      margin-top: 0;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .content-module h3 i {
      color: var(--gold);
    }

    /* Nivel complementario */
    .complementary-level {
      background: rgba(212, 175, 55, 0.1);
      border-radius: var(--radius);
      padding: 3rem;
      margin-top: 3rem;
      border: 1px solid rgba(212, 175, 55, 0.2);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .complementary-level:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gold-gradient);
      opacity: 0.05;
      z-index: -1;
    }

    .complementary-level h3 {
      color: var(--gold-soft);
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .certification-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: var(--gold-gradient);
      color: #000;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      font-weight: 500;
      margin-top: 1.5rem;

    }

    .certification-badge i {
  position: relative;
  top: 7px; /* mueve el icono ligeramente hacia abajo */
}


        .metodologia {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #0a0a0a, #181818);
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        /* Elementos decorativos */
        .metodologia::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-gradient);
        }

        .decoration {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            color: var(--gold);
        }

        .decoration-1 {
            top: -30px;
            right: -30px;
            font-size: 12rem;
        }

        .decoration-2 {
            bottom: -30px;
            left: -30px;
            font-size: 10rem;
        }

        .metodologia-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
        }

        /* .metodologia-header h1 {
            color: var(--gold-soft);
            margin-bottom: 1.5rem;
            font-size: 2.8rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        } */

        .metodologia-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 2px;
        }

        .metodologia-header .intro {
            font-size: 1.2rem;
            color: var(--muted);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .pilares-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .pilar {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            flex: 1 1 300px;
            max-width: 350px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .pilar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .pilar:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .pilar:hover::before {
            transform: scaleX(1);
        }

        .pilar-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .pilar-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--bg-dark);
            background: var(--gold-gradient);
            flex-shrink: 0;
            transition: var(--transition);
        }

        .pilar:hover .pilar-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .pilar h3 {
            color: var(--gold-soft);
            margin: 0;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .pilar p {
            color: var(--muted);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .pilar ul {
            list-style: none;
            padding: 0;
        }

        .pilar li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
            color: var(--muted);
        }

        .pilar li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Elementos de conexión entre pilares */
        .connection-line {
            position: absolute;
            height: 2px;
            /* background: var(--gold-gradient); */
            top: 50%;
            width: 80%;
            left: 10%;
            z-index: 0;
            opacity: 0.2;
        }

        /* Sección de beneficios adicionales */
        .beneficios {
            margin-top: 4rem;
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            z-index: 1;
        }

        .beneficios .section-badge {
    margin-bottom: 40px; /* Aumenta el valor si quieres más espacio */
}


        .beneficios h2 {
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--gold-soft);
        }

        .beneficios-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .beneficio-item {
            flex: 1 1 200px;
            max-width: 250px;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .beneficio-item:hover {
            transform: translateY(-5px);
            background: rgba(212, 175, 55, 0.08);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .beneficio-item i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .beneficio-item h4 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            color: var(--gold-soft);
        }

        .beneficio-item p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Efectos de partículas doradas */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            animation: float 15s infinite linear;
            opacity: 0.1;
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.05;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .metodologia {
                padding: 3rem 1.5rem;
            }
            
            .metodologia-header h1 {
                font-size: 2.2rem;
            }
            
            .metodologia-header .intro {
                font-size: 1.1rem;
            }
            
            .pilar {
                padding: 2rem 1.5rem;
            }
            
            .pilar-header {
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }
            
            .connection-line {
                display: none;
            }
            
            .beneficios {
                padding: 2rem 1rem;
            }
            
            .beneficios-grid {
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .metodologia-header h1 {
                font-size: 2rem;
                font-weight: 850;
            }
            
            .pilar {
                padding: 1.5rem;
            }
            
            .pilar-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .pilar h3 {
                font-size: 1.3rem;
            }
            
            .beneficio-item {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }


                .programa-destinado {
            max-width: 800px;
            margin: 0 auto;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, #0a0a0a, #181818);
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
           
        }

        /* Elementos decorativos */
        .programa-destinado::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-gradient);
        }

        .decoration {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            color: var(--gold);
        }

        .decoration-1 {
            top: -20px;
            right: -20px;
            font-size: 8rem;
        }

        .decoration-2 {
            bottom: -20px;
            left: -20px;
            font-size: 6rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .section-header h1 {
            color: var(--gold-soft);
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        

        .section-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 2px;
        }

        .intro-text {
            font-size: 1.2rem;
            color: var(--muted);
            line-height: 1.8;
            text-align: center;
            margin-bottom: 2rem;
        }

        .highlight-text {
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-left: 4px solid var(--gold);
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .highlight-text p {
            font-size: 1.1rem;
            color: var(--gold-soft);
            line-height: 1.7;
            margin: 0;
            font-style: italic;
            text-align: center;
        }

        /* Contenido principal en una columna */
        .content-flow {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        /* Secciones */
        .content-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .content-section:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: var(--shadow);
        }

        .section-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            color: var(--gold-soft);
            text-align: center;
        }

        .section-title i {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--bg-dark);
            background: var(--gold-gradient);
            flex-shrink: 0;
        }

        .section-title h2 {
            font-size: 1.8rem;
            margin: 0;
        }
              .programa-destinado {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 3rem;
            background: linear-gradient(135deg, #0a0a0a, #181818);
            border-radius: 25px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .programa-destinado::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold-gradient);
        }

        .header-section {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            z-index: 1;
        }

        .main-title {
            color: var(--gold-soft);
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            letter-spacing: -0.5px;
        }

        .title-description {
            color: var(--muted);
            font-size: 1.4rem;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .cta-wrapper {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-bolsa {
    display: inline-block;
    background: #d4af37;
    color: #0a0a0a;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-bolsa:hover {
    background: #f5d56c;
    transform: translateY(-2px);
}


        /* Grid de perfiles profesional */
        .perfiles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .perfil-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            padding: 3rem 2.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            min-height: 280px;
        }

        .perfil-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .perfil-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .perfil-card:hover::before {
            transform: scaleX(1);
        }

        /* Marcas de agua transparentes */
        .watermark {
            position: absolute;
            font-size: 12rem;
            font-weight: 900;
            color: rgba(212, 175, 55, 0.03);
            z-index: 0;
            line-height: 1;
            pointer-events: none;
            transition: var(--transition);
        }

        .watermark-1 { top: -30px; right: -10px; }
        .watermark-2 { top: -30px; right: -15px; }
        .watermark-3 { top: -30px; right: -10px; }
        .watermark-4 { top: -30px; right: -15px; }
        .watermark-5 { top: -30px; right: -10px; }
        .watermark-6 { top: -30px; right: -15px; }

        .perfil-card:hover .watermark {
            color: rgba(212, 175, 55, 0.06);
            transform: scale(1.05);
        }

        .perfil-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .perfil-imagen {
            width: 120px;
            height: 120px;
            border-radius: 16px;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid rgba(212, 175, 55, 0.3);
            transition: var(--transition);
            position: relative;
            z-index: 2;
        }

        .perfil-card:hover .perfil-imagen {
            border-color: var(--gold);
            transform: scale(1.08);
        }

        .perfil-imagen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .perfil-card:hover .perfil-imagen img {
            transform: scale(1.15);
        }

        .perfil-titulo {
            color: var(--gold-soft);
            font-size: 1.6rem;
            font-weight: 600;
            margin: 0;
            line-height: 1.3;
            flex: 1;
            position: relative;
            z-index: 2;
        }

        .perfil-descripcion {
            color: var(--muted);
            line-height: 1.7;
            font-size: 1.15rem;
            margin: 0;
            padding-left: 0.5rem;
            position: relative;
            z-index: 2;
        }

        /* Indicador numérico sutil */
        .numero-indicator {
            position: absolute;
            bottom: 25px;
            left: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(212, 175, 55, 0.5);
            transition: var(--transition);
        }

        .perfil-card:hover .numero-indicator {
            color: rgba(212, 175, 55, 0.8);
            transform: translateX(5px);
        }

        /* Partículas doradas */
        .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .gold-particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            animation: floatAnimation 25s infinite linear;
            opacity: 0.08;
        }

        @keyframes floatAnimation {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.08;
            }
            90% {
                opacity: 0.04;
            }
            100% {
                transform: translateY(-150px) translateX(150px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Efectos de profundidad */
        .perfil-card {
            backdrop-filter: blur(15px);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .perfiles-grid {
                grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
                gap: 2rem;
            }
        }

        @media (max-width: 968px) {
            .programa-destinado {
                padding: 4rem 2rem;
            }
            
            .main-title {
                font-size: 2.5rem;
            }
            
            .perfiles-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 1.8rem;
            }
            
            .perfil-card {
                padding: 2.5rem 2rem;
                min-height: 260px;
            }
            
            .watermark {
                font-size: 10rem;
            }
            
            .watermark-1,
            .watermark-2,
            .watermark-3,
            .watermark-4,
            .watermark-5,
            .watermark-6 {
                top: -20px;
                right: -5px;
            }
            
            .perfil-imagen {
                width: 120px;
                height: 120px;
            }
            
            .perfil-titulo {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .programa-destinado {
                padding: 3rem 1.5rem;
            }
            
            .main-title {
                font-size: 2.3rem;
            }
            
            .title-description {
                font-size: 1.2rem;
            }
            
            .perfiles-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .watermark {
                font-size: 8rem;
            }
            
            .perfil-header {
                gap: 1.5rem;
            }
            
            .perfil-imagen {
                width: 250px;
                height: 250px;
            }
            
            .perfil-titulo {
                font-size: 1.4rem;
            }
            
            .perfil-descripcion {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .programa-destinado {
                padding: 2.5rem 1rem;
            }
            
            .main-title {
                font-size: 2.5rem;
            }
            
            .perfil-card {
                padding: 2rem 1.5rem;
                min-height: auto;
            }
            
            .watermark {
                font-size: 6rem;
            }
            
            .watermark-1,
            .watermark-2,
            .watermark-3,
            .watermark-4,
            .watermark-5,
            .watermark-6 {
                top: -10px;
                right: -5px;
            }
            
            .perfil-header {
                flex-direction: column;
                text-align: center;
                gap: 1.2rem;
            }
            
            .perfil-imagen {
                width: 250px;
                height: 250px;
            }
        }

        /* Grid de habilidades */
        .habilidades-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .habilidad-item {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
        }

        .habilidad-item:hover {
            background: rgba(212, 175, 55, 0.08);
            transform: translateY(-3px);
        }

        .habilidad-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--bg-dark);
            background: var(--gold-gradient);
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .habilidad-content h4 {
            color: var(--gold-soft);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        .habilidad-content p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        /* Sección de enfoque */
        .enfoque-section {
            background: rgba(212, 175, 55, 0.05);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(212, 175, 55, 0.1);
            text-align: center;
        }

        .enfoque-section h3 {
            color: var(--gold-soft);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .enfoque-text {
            color: var(--muted);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* Partículas doradas */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            animation: float 15s infinite linear;
            opacity: 0.1;
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.05;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .programa-destinado {
                padding: 1.5rem 0,2rem;
            }
            
            .section-header h1 {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 2rem;
            }
            
            .section-title {
                flex-direction: column;
                gap: 1rem;
            }
            
            .section-title i {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .perfil-item {
                padding: 1.2rem;
                padding-left: 2.5rem;
            }
            
            .habilidades-grid {
                grid-template-columns: 1fr;
            }
            
            .habilidad-item {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .section-header h1 {
                font-size: 1.7rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .highlight-text {
                padding: 1.5rem;
            }
            
            .perfil-item::before {
                left: 1rem;
            }
            
            .habilidad-item {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .habilidad-icon {
                align-self: center;
            }
        }

    /* Formulario de contacto */
    .form-container {
      max-width: 700px;
      margin: 0 auto;
      background: rgba(30, 30, 30, 0.6);
      border-radius: var(--radius);
      padding: 3rem;
      box-shadow: var(--shadow);
      border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--text);
    }

    .form-control {
      width: 100%;
      padding: 1rem;
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: var(--radius);
      font-size: 1rem;
      transition: var(--transition);
      background: rgba(20, 20, 20, 0.8);
      color: var(--text);
      font-family: 'Poppins', sans-serif;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }

    /* Footer mejorado */
    footer {
      padding: 4rem 1.5rem 2rem;
      text-align: center;
      color: var(--muted);
      border-top: 1px solid rgba(212, 175, 55, 0.1);
      background: rgba(10, 10, 10, 0.8);
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-column h3 {
      font-family: 'Playfair Display';
      color: var(--gold-soft);
      margin-bottom: 1.5rem;
      font-size: 1.4rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: var(--muted);
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--gold);
      padding-left: 5px;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      justify-content: center;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: rgba(212, 175, 55, 0.1);
      border-radius: 50%;
      transition: var(--transition);
      border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .social-links a:hover {
      background: var(--gold);
      color: #000;
      transform: translateY(-5px);
    }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Animaciones */
    [data-animate] {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    [data-animate].visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Scroll to top button */
    .scroll-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 50px;
      height: 50px;
      background: var(--gold-gradient);
      color: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      opacity: 0;
      visibility: hidden;
      z-index: 999;
      box-shadow: var(--shadow);
    }

    .scroll-to-top.active {
      opacity: 1;
      visibility: visible;
    }

    .scroll-to-top:hover {
      transform: translateY(-5px);
    }



    
/* 
          //////////////////////////////////////////// */
:root {
  --accent: #a2ff5e;
  --gradient: linear-gradient(
    180deg,
    rgba(162, 255, 94, 1) 0%,
    rgba(74, 207, 255, 1) 100%
  );
  --shadow-l: 0 8px 20px rgba(0, 0, 0, 0.25);

  /* Ajustes finos */
  --timeline-left: 22px; /* posición de la línea vertical */
  --icon-lg: 46px; /* tamaño de los íconos */
  --icon-offset: 14px; /* centra ícono sobre la barra */
  --icon-bg: #0f172a; /* base sólida bajo el ícono */
  --card-bg: rgba(255, 255, 255, 0.06);
}

/* === Contenedor principal === */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 10px;
  z-index: 0;
}

.timeline-content.glass h3 {
  color: #C8A552
}


/* Línea base (siempre debajo) */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--timeline-left);
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  z-index: 0;
}

/* Barra de progreso (debajo) */
.timeline-progress {
  position: absolute;
  top: 0;
  left: var(--timeline-left);
  width: 3px;
  height: 0;
  background: var(--gradient);
  border-radius: 4px;
  transition: height 0.65s cubic-bezier(0.25, 0.9, 0.3, 1);
  z-index: 0;
}

/* === Ítems === */
.timeline-item {
  position: relative;
  padding: 30px 0; /* Espacio vertical igual arriba y abajo */
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: all 0.65s cubic-bezier(0.25, 0.9, 0.3, 1);
  z-index: 1;
  display: flex;
  align-items: center; /* Centra verticalmente el contenido */
  min-height: 100px; /* Altura mínima consistente */
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* === Íconos (centrados verticalmente con el contenido) === */
.timeline-icon {
  font-size: 1.2rem;
  width: var(--icon-lg);
  height: var(--icon-lg);
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 50%;
  background: radial-gradient(
      120% 120% at 30% 20%,
      rgba(162, 255, 94, 0.24),
      rgba(74, 207, 255, 0.16)
    ),
    var(--icon-bg);
  border: 1px solid rgba(162, 255, 94, 0.35);
  box-shadow: inset 0 0 14px rgba(162, 255, 94, 0.18),
    0 6px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.55s cubic-bezier(0.25, 0.9, 0.3, 1), filter 0.55s ease,
    color 0.55s ease, box-shadow 0.55s ease;
  position: absolute;
  left: calc(var(--timeline-left) - var(--icon-offset));
  top: 50%; /* Centrado vertical perfecto */
  transform: translateY(-50%);
  z-index: 3;
  /* Animación de flotación suave */
  animation: floatIcon 12s ease-in-out infinite;
  margin-top: 25px;
  margin-left: -12px;
}

/* Animación de flotación para los iconos */
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-5px);
  }
}

/* Hover manual o automático - mantiene los estilos originales pero con animación mejorada */
.timeline-icon.hovered,
.timeline-icon:hover {
  animation: hoverFloat 1.2s ease-in-out infinite;
  color: #fff;
  filter: drop-shadow(0 0 18px rgba(161, 255, 94, 0.301));
  box-shadow: 0 0 26px rgba(161, 255, 94, 0.178),
    inset 0 0 20px rgba(161, 255, 94, 0.171);
}

@keyframes hoverFloat {
  0%,
  100% {
    transform: translateY(-50%) translateY(-3px) scale(1.1);
  }
  50% {
    transform: translateY(-50%) translateY(2px) scale(1.05);
  }
}

/* Estado completado opcional con animación */
.timeline-item.completed .timeline-icon {
  background: linear-gradient(
    135deg,
    rgba(162, 255, 94, 1),
    rgba(74, 207, 255, 1)
  );
  color: #06121a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(74, 207, 255, 0.25),
    inset 0 0 14px rgba(0, 0, 0, 0.12);
  animation: completedPulse 12s ease-in-out infinite;
}

@keyframes completedPulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 8px 20px rgba(74, 207, 255, 0.25),
      inset 0 0 14px rgba(0, 0, 0, 0.12);
  }
  50% {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 28px rgba(74, 207, 255, 0.4),
      inset 0 0 18px rgba(0, 0, 0, 0.18);
  }
}

/* Diferentes delays para crear efecto de onda */
.timeline-item:nth-child(1) .timeline-icon {
  animation-delay: 0s;
}

.timeline-item:nth-child(2) .timeline-icon {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(3) .timeline-icon {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(4) .timeline-icon {
  animation-delay: 0.9s;
}

.timeline-item:nth-child(5) .timeline-icon {
  animation-delay: 1.2s;
}

/* === Tarjetas (contenido) === */
.timeline-content {
  margin-left: calc(var(--timeline-left) + var(--icon-lg) + 20px);
  padding: 20px 24px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.089),
    rgba(255, 255, 255, 0.055)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: 100px; /* Altura mínima consistente */
  display: flex;
  flex-direction: column;

  justify-content: center; /* Centra el contenido verticalmente */
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.65);
}

.timeline-content li {
  margin: 0.5rem 0;        /* espacio entre ítems */
  padding-left: 1.5rem;    /* sangría */
  list-style: none;        /* quita viñeta estándar */
  position: relative;
  font-size: 1.05rem;
  color: #e2e8f0;          /* color texto */
  font-weight: 500;
}

/* Agregar ícono personalizado antes de cada li */
.timeline-content li::before {

  position: absolute;
  left: 0;
  color: #38bdf8;         /* azul suave */
  font-weight: bold;
}

.timeline-content h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 725;
  color: #f8fafc;
  line-height: 1.3;
}

.timeline-content p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #cbd5e1;
}
/* === Responsive === */
@media (max-width: 640px) {
  :root {
    --timeline-left: 16px;
    --icon-lg: 38px;
    --icon-offset: 11px;
  }

  .timeline-item {
    margin-bottom: 26px;
    padding-top: 22px;
  }
  .timeline-icon {
    top: -12px;
  }
  .timeline-content {
    margin-left: 60px;
    padding: 14px 16px;
  }
}

@media (max-width: 900px) {
  .differential {
    grid-template-columns: 1fr;
  }
}

.differential-content {
  padding-right: 20px;
}

.differential-image {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}

.differential-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(162, 255, 94, 0.1),
    rgba(74, 207, 255, 0.1)
  );
  z-index: 1;
}

.differential-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.differential-feature i {
  color: var(--accent);
  font-size: 24px;
  margin-top: 5px;
}


/* ==== DIPLOMA SECTION ==== */
.diploma-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.diploma-container {
  max-width: 1200px;
  margin: 0 auto;
}

.diploma-preview {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid var(--gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.diploma-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.diploma-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* 🔸 Cinta diagonal premium */
.ribbon {
  position: absolute;
  top: 50px;
  right: -72px; /* 🔹 Más espacio hacia la derecha para compensar el ángulo */
  transform: rotate(45deg);
  background: linear-gradient(90deg, #d4af37, #ffdd55);
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;     /* 🔹 Tamaño ligeramente menor para encajar bien */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.6rem 4.5rem; /* 🔹 Aumenta el ancho útil de la cinta */
  text-align: center;
  white-space: nowrap;    /* 🔹 Evita salto de línea */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  z-index: 5;
}



/* 🔹 Cinta diagonal (tu código conservado) */
.cinta {
  position: absolute;
  top: 52rem;
  right: -45px;
  background: var(--gold-gradient-2); 
  color: rgba(212, 202, 202, 0.836);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 45px;
  /* transform: rotate(45deg); */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 10;
  letter-spacing: 0.4px;
  border-radius: 4px;
  opacity: 0;
  animation: fadeSlideIn 1s ease-out forwards, glowPulse 5s ease-in-out infinite;
}

/* ✨ Animación de entrada suave */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✨ Pulso elegante del degradado (efecto metalizado) */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 2px 6px rgba(143, 215, 236, 0.2);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 2px 5px rgba(255, 238, 141, 0.438);
    filter: brightness(1.08);
  }
}



/* 🔹 Responsive (tu configuración original) */
@media (max-width: 480px) {
  .cinta {
    top: 77rem;
    right: -10px;
    font-size: 0.70rem;
    padding: 4px 15px;
  }
}






/* 🔹 Cinta diagonal (tu código conservado) */
.cinta-2 {
  position: absolute;
  top: 37rem;
  right: -40px;
  background: var(--gold-gradient-2); 
  color: rgba(212, 202, 202, 0.836);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 45px;
  /* transform: rotate(45deg); */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 10;
  letter-spacing: 0.4px;
  border-radius: 4px;
  opacity: 0;
  animation: fadeSlideIn 1s ease-out forwards, glowPulse 5s ease-in-out infinite;
}

/* ✨ Animación de entrada suave */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✨ Pulso elegante del degradado (efecto metalizado) */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 2px 6px rgba(143, 215, 236, 0.2);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 2px 5px rgba(255, 238, 141, 0.438);
    filter: brightness(1.08);
  }
}



/* 🔹 Responsive (tu configuración original) */
@media (max-width: 480px) {
  .cinta-2 {
    top: 41rem;
    right: -10px;
    font-size: 0.70rem;
    padding: 4px 15px;
  }
}
/* 🔹 Ajuste visual solo en pantallas grandes */
@media (min-width: 1025px) {
  .diploma-preview {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .diploma-image {
    max-width: 80%;
  }
}

/* 🔹 Ajuste visual solo en pantallas móviles */
@media (max-width: 768px) {
  .ribbon {
    top: 50px;             /* 🔹 La sube un poco para compensar menor altura */
    right: -55px;          /* 🔹 Menos desplazamiento lateral */
    font-size: 0.7rem;     /* 🔹 Texto más pequeño, legible */
    padding: 0.4rem 3rem;  /* 🔹 Cinta más compacta */
    letter-spacing: 0.4px;
    transform: rotate(45deg) scale(0.95); /* 🔹 Mantiene proporción sin romper */
  }
}

/* 🔸 Ajuste adicional para pantallas muy pequeñas */
@media (max-width: 480px) {
  .ribbon {
    top: 40px;
    right: -45px;
    font-size: 0.65rem;
    padding: 0.35rem 2.5rem;
  }
}


/* ==== BONO / CERTIFICADO SECUNDARIO ==== */
.diploma-preview.bono {
  background: linear-gradient(135deg, #111827, #1f2937); /* tonos azul oscuro */
  border: 2px solid rgba(173, 216, 230, 0.4); /* borde plateado-azulado */
  box-shadow: 0 25px 60px rgba(0, 50, 120, 0.5);
  transition: all 0.4s ease;
}

.diploma-preview.bono {
  margin-bottom: 4rem; /* separa del cierre del section */
}

@media (min-width: 1025px) {
  .diploma-preview {
    margin-bottom: 4rem;
  }
}


.diploma-preview.bono:hover {
  box-shadow: 0 30px 70px rgba(100, 180, 255, 0.35);
  transform: translateY(-3px);
}

/* 🎖 Cinta elegante versión “Bono / Habilidades Blandas” */
.ribbon-bono {
  position: absolute;
  top: 50px;
  left: -65px;
  transform: rotate(-45deg);
  background: linear-gradient(90deg, #4fc3f7, #81d4fa, #b3e5fc);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.6rem 4.2rem;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  z-index: 5;
  border-radius: 2px;
}

/* 💡 Brillo animado sutil (solo para bono) */
.ribbon-bono::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* 📱 Ajuste responsive */
@media (max-width: 768px) {
  .ribbon-bono {
    top: 40px;
    left: -55px;
    font-size: 0.7rem;
    padding: 0.4rem 3rem;
  }
}

@media (max-width: 480px) {
  .ribbon-bono {
    top: 35px;
    left: -45px;
    font-size: 0.65rem;
    padding: 0.35rem 2.5rem;
  }
}








        /* Partículas doradas */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            animation: float 15s infinite linear;
            opacity: 0.1;
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.05;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .beneficios-premium {
                padding: 3rem 1.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .certificacion-doble {
                padding: 2rem;
            }
            
            .certificacion-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .categoria {
                padding: 2rem;
            }
            
            .categoria-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .full-support {
                padding: 2rem;
            }
            
            .support-items {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .beneficios-premium {
                padding: 2rem 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .certificacion-doble {
                padding: 1.5rem;
            }
            
            .certificacion-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .categoria {
                padding: 1.5rem;
            }
            
            .categoria-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .categoria-title {
                font-size: 1.4rem;
            }
            
            .beneficio-item {
                padding: 0.8rem;
            }
            
            .full-support {
                padding: 1.5rem;
            }
        }

     /* FAQ Mejorado con Panel Interactivo — Versión responsive premium */
.faq {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.premium-benefits .section-subtitle {
    margin-bottom: 40px; /* Aumenta o reduce según lo que quieras */
}


.preguntas-panel {
  width: 100%;
}

/* === Ítem === */
.pregunta-item {
  background: rgba(21, 21, 22, 0.7);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  transition: var(--transition);
}

.pregunta-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-gold);
}

.pregunta-item.activo {
  border-color: rgba(212, 175, 55, 0.5);
}

/* === Cabecera === */
.pregunta-cabecera {
  padding: 25px 35px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  position: relative;
  gap: 10px;
}

.pregunta-cabecera::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--gold-gradient);
  transform: scaleY(0);
  transition: var(--transition);
}

.pregunta-item.activo .pregunta-cabecera::before {
  transform: scaleY(1);
}

.pregunta-cabecera:hover {
  background: rgba(212, 175, 55, 0.03);
}

/* === Título === */
.pregunta-titulo {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  flex: 1;
}

.pregunta-item.activo .pregunta-titulo {
  color: var(--gold);
}

/* === Número === */
.numero-pregunta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-radius: 50%;
  margin-right: 18px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

/* === Icono === */
.icono-pregunta {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.icono-pregunta::before,
.icono-pregunta::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.icono-pregunta::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.icono-pregunta::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.pregunta-item.activo .icono-pregunta::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* === Contenido === */
.contenido-pregunta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 10, 10, 0.5);
}

.cuerpo-pregunta {
  padding: 0 35px 35px 85px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.cuerpo-pregunta p {
  margin-bottom: 15px;
}

.cuerpo-pregunta li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.cuerpo-pregunta li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* === Invitación contacto === */
.contacto-invitacion {
  text-align: center;
  margin-top: 60px;
  padding: 35px 25px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contacto-invitacion p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1.1rem;
}


    /* ===== Sección Instructor ===== */
    .instructor-section {
      padding: 5rem 2rem 3rem;
      background: linear-gradient(135deg, #0a0a0a, #181818);
    }

    .instructor-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      /* gap: 3rem; */
      flex-wrap: wrap;
    }

    .instructor-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: 280px;
    }

    /* === Imagen circular del instructor === */
    .instructor-img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      overflow: hidden;
      border: 1.8px solid var(--gold);
      box-shadow: var(--shadow);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

 /* === Imagen circular del instructor (reducida) === */
    /* ===== Sección Instructor ===== */
    .instructor-section {
      padding: 5rem 2rem 3rem;
      background: linear-gradient(135deg, #0a0a0a, #181818);
      position: relative;
      overflow: hidden;
    }

    .instructor-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* gap: 3rem; */
    }

    .instructor-image {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .instructor-img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--gold-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      transition: transform 0.5s ease;
      border: 2.5px solid rgba(212, 175, 55, 0.3);
    }

    .instructor-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .instructor-img:hover {
      transform: scale(1.05);
      border-color: var(--gold);
    }

    .instructor-info {
      width: 100%;
      text-align: center;
    }

    .section-header {
      margin-bottom: 2rem;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(212, 175, 55, 0.1);
      border: 1px solid rgba(212, 175, 55, 0.3);
      color: var(--gold);
      padding: 0.4rem 1rem;
      border-radius: 30px;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .section-title {
      font-family: "Playfair Display", serif;
      font-size: 2.2rem;
      color: var(--gold-soft);
      margin-top: 1.5rem;
      line-height: 1.3;
    }

    .instructor-name {
      font-family: "Playfair Display", serif;
      font-size: 1.5rem;
      color: var(--gold);
      margin: 1.5rem 0 0.5rem;
    }

    .instructor-title {
      font-size: 1.2rem;
      color: var(--gold-soft);
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    /* === Categorías === */
    .instructor-categories {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-bottom: 2rem;
    }

    .category-tag {
      background: rgba(212, 175, 55, 0.15);
      color: var(--gold-soft);
      border: 1px solid rgba(212, 175, 55, 0.3);
      padding: 0.3rem 0.85rem;
      border-radius: 25px;
      font-size: 0.75rem;
      font-weight: 500;
      transition: var(--transition);
    }

    .category-tag:hover {
      background: var(--gold-gradient);
      color: #000;
    }

    /* === Descripción === */
    .instructor-bio {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* === Estadísticas === */
    .instructor-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin: 2.5rem 0;
      flex-wrap: wrap;
    }

    .instructor-stat {
      text-align: center;
      min-width: 120px;
    }

    .instructor-stat-number {
      font-family: "Playfair Display", serif;
      font-size: 2rem;
      color: var(--gold);
      font-weight: 700;
    }

    .instructor-stat-label {
      font-size: 0.95rem;
      color: var(--muted);
      margin-top: 0.5rem;
    }

    /* === Botón Ver más === */
    .instructor-link {
      display: inline-block;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      background: var(--gold-gradient);
      color: #000;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition);
      box-shadow: var(--shadow);
      margin-top: 1rem;
    }

    .instructor-link:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, #f1e0a6, #d4af37);
    }

    /* === Sección Detalles en una columna === */
    .details-section {
      max-width: 800px;
      margin: 5rem auto 0;
      padding: 3rem 2rem;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 20px;
      border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .details-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .details-title {
      font-family: "Playfair Display", serif;
      font-size: 2.2rem;
      color: var(--gold-soft);
      margin-bottom: 1.5rem;
    }

    .details-subtitle {
      color: var(--muted);
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }

    .details-content {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .details-card {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 16px;
      padding: 2.5rem;
      border: 1px solid rgba(212, 175, 55, 0.1);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .details-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gold-gradient);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .details-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .details-card:hover::before {
      transform: scaleX(1);
    }

.card-header {
  display: flex;
  flex-direction: column; /* apila título y duración */
  align-items: center;    /* centra horizontalmente */
  text-align: center;
  gap: 0.6rem;
}


        .countdown-container {
            max-width: 850px;
            width: 100%;
            background: rgba(18, 18, 34, 0.85);
            backdrop-filter: blur(12px);
            border-radius: 24px;
            padding: 45px 40px;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(212, 175, 55, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .countdown-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f4e4a6, #d4af37);
            background-size: 200% 100%;
            animation: shimmer 3s infinite linear;
        }
        
        .countdown-container::after {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            z-index: -1;
        }
        
        .header {
            margin-bottom: 35px;
        }
        
        .badge {
            display: inline-block;
            background: linear-gradient(135deg, #d4af37, #f4e4a6);
            color: #1a1a2e;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 20px;
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }
        
        .badge::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20px;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(30deg);
            animation: badgeShine 4s infinite linear;
        }
        
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 18px;
            background: linear-gradient(135deg, #f4e4a6 0%, #d4af37 50%, #b8941f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
        }

        
        
        .subtitle {
            font-size: 1.2rem;
            color: #cbd5e0;
            margin-bottom: 35px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .countdown-section {
            background: rgba(12, 12, 26, 0.7);
            border-radius: 18px;
            padding: 40px;
            margin-bottom: 35px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow: 
                inset 0 1px 0 rgba(212, 175, 55, 0.05),
                0 8px 25px rgba(0, 0, 0, 0.3);
            /* position: relative; */
        }
        
        .countdown-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 18px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(244, 228, 166, 0.1));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }
        
        .cta-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: #f4e4a6;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            animation: pulse-gold 2s infinite;
            text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
        }
        
        .custom-countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }
        
        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 110px;
            position: relative;
        }
        
        .countdown-value {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f4e4a6 0%, #d4af37 50%, #b8941f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 8px;
            text-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            font-variant-numeric: tabular-nums;
            position: relative;
        }
        
        .countdown-value::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
        }
        
        .countdown-label {
            font-size: 0.9rem;
            color: #a0aec0;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }
        
        .btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, #d4af37, #f4e4a6);
            color: #1a1a2e;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 
                0 6px 20px rgba(212, 175, 55, 0.5),
                0 0 0 0 rgba(212, 175, 55, 0.4);
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 10px 25px rgba(212, 175, 55, 0.6),
                0 0 0 10px rgba(212, 175, 55, 0.1);
        }
        
        .btn-primary:active {
            transform: translateY(1px);
        }
        
        .btn-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20px;
            height: 200%;
            background: rgba(255, 255, 255, 0.4);
            transform: rotate(30deg);
            transition: all 0.6s;
        }
        
        .btn-primary:hover::after {
            left: 120%;
        }
        
        
    
        
        .feature-desc {
            font-size: 0.9rem;
            color: #a0aec0;
            line-height: 1.5;
        }
        
        .footer-text {
            text-align: center;
            width: 100%;
            margin-top: 35px;
            font-size: 0.9rem;
            color: #718096;
            font-style: italic;
        }
        
        /* Animaciones */
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        
        @keyframes pulse-gold {
            0%, 100% { 
                opacity: 1; 
                transform: scale(1); 
            }
            50% { 
                opacity: 0.9; 
                transform: scale(1.02); 
            }
        }
        
        @keyframes badgeShine {
            0% { left: -60%; }
            20% { left: 120%; }
            100% { left: 120%; }
        }


        /* Testimonials Section */
        .testimonials-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #0a0a0a, #181818);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-gradient);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
        }

        .section-title {
            color: var(--gold-soft);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .text-gradient {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            color: var(--muted);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Testimonials Slider */
        .testimonials__slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial {
            min-width: 100%;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
        }

        .testimonial:hover {
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: var(--shadow);
            transform: translateY(-5px);
        }

        .testimonial__text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 2rem;
            font-style: italic;
            position: relative;
        }

        .testimonial__text::before,
        .testimonial__text::after {
            content: '"';
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.3;
            position: absolute;
        }

        .testimonial__text::before {
            top: -1rem;
            left: -1rem;
        }

        .testimonial__text::after {
            bottom: -2rem;
            right: -1rem;
        }

        .testimonial__author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

        .testimonial__author img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--gold);
            transition: var(--transition);
        }

        .testimonial:hover .testimonial__author img {
            transform: scale(1.1);
        }

        .testimonial__info {
            text-align: left;
        }

        .testimonial__info h4 {
            color: var(--gold-soft);
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .testimonial__info span {
            color: var(--muted);
            font-size: 0.95rem;
        }

        /* Testimonials Controls */
        .testimonials__controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }

        .testimonial-control {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            background: transparent;
            color: var(--gold);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .testimonial-control:hover {
            background: var(--gold);
            color: var(--bg-dark);
            transform: scale(1.1);
        }

        /* Testimonials Dots */
        .testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }

  
        /* Banner Section - CORREGIDO Y OPTIMIZADO */
        .banner-section {
            padding: 3rem 0;
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        .banner-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .banner-track {
            display: flex;
            gap: 2rem;
            animation: scrollBanner 40s linear infinite;
            padding: 1rem 0;
            width: max-content;
        }

        .banner-item {
            flex: 0 0 150px; /* Tamaño consistente para web */
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            aspect-ratio: 1/1; /* Mantenemos el banner cuadrado */
        }

        .banner-item:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .banner-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }

        .banner-item:hover img {
            transform: scale(1.1);
        }

        .banner-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(transparent, rgba(10, 10, 10, 0.8));
        }

        /* Efecto de desvanecimiento lateral */
        .banner-container::before,
        .banner-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .banner-container::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
        }

        .banner-container::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
        }

        @keyframes scrollBanner {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-150px * 5 - 2rem * 5)); /* Ajustado al tamaño correcto */
            }
        }

        /* Pause animation on hover */
        .banner-track:hover {
            animation-play-state: paused;
        }

        /* Responsive Design - CORREGIDO Y CONSISTENTE */
        @media (max-width: 968px) {
        
            .banner-item {
                flex: 0 0 100px; /* Reducido aprox. 33% desde 150px */
            }
            
            .banner-track {
                gap: 1.2rem;
            }
            
            .banner-container::before,
            .banner-container::after {
                width: 60px;
            }
            
            @keyframes scrollBanner {
                100% {
                    transform: translateX(calc(-100px * 5 - 1.2rem * 5));
                }
            }
        }

        @media (max-width: 480px) {
           
            /* Banner optimizado para móviles */
            .banner-section {
                padding: 2rem 0;
            }
            
            .banner-item {
                flex: 0 0 80px; /* Reducido aprox. 47% desde 150px */
                border-radius: 10px;
            }
            
            .banner-track {
                gap: 1rem;
            }
            
            .banner-container::before,
            .banner-container::after {
                width: 40px;
            }
            
            .testimonials__controls {
                margin-top: 2rem;
            }
            
            .testimonial-control {
                width: 45px;
                height: 45px;
            }
            
            @keyframes scrollBanner {
                100% {
                    transform: translateX(calc(-80px * 5 - 1rem * 5));
                }
            }
        }

        @media (max-width: 360px) {
            .banner-item {
                flex: 0 0 70px; /* Reducido aprox. 53% desde 150px */
            }
            
            .banner-track {
                gap: 0.8rem;
            }
            
            @keyframes scrollBanner {
                100% {
                    transform: translateX(calc(-70px * 5 - 0.8rem * 5));
                }
            }
        }

        /* Decorative Elements */
        .decoration {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            color: var(--gold);
        }

        .decoration-1 {
            top: 10%;
            right: 5%;
            font-size: 8rem;
        }

        .decoration-2 {
            bottom: 10%;
            left: 5%;
            font-size: 6rem;
        }


  

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .testimonial {
                padding: 2rem 1.5rem;
            }
            
            .testimonial__text {
                font-size: 1rem;
            }
            
            .testimonial__author img {
                width: 60px;
                height: 60px;
            }
     
            
            @keyframes scrollBanner {
                100% {
                    transform: translateX(calc(-200px * 5 - 2rem * 5));
                }
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1.5rem;
            }
            
            .section-title {
                font-size: 1.7rem;
            }
            
            .testimonial {
                padding: 1.5rem;
            }
            
            .testimonial__text::before,
            .testimonial__text::after {
                font-size: 2rem;
            }
            
            .testimonial__text::before {
                left: -0.5rem;
            }
            
            .testimonial__text::after {
                right: -0.5rem;
            }
        
 
            .testimonials__controls {
                margin-top: 2rem;
            }
            
            .testimonial-control {
                width: 45px;
                height: 45px;
            }
            
            @keyframes scrollBanner {
                100% {
                    transform: translateX(calc(-160px * 5 - 2rem * 5));
                }
            }
        }

        /* Decorative Elements */
        .decoration {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            color: var(--gold);
        }

        .decoration-1 {
            top: 10%;
            right: 5%;
            font-size: 8rem;
        }

        .decoration-2 {
            bottom: 10%;
            left: 5%;
            font-size: 6rem;
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            animation: float 15s infinite linear;
            opacity: 0.1;
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.05;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }        
        /* Ajuste responsivo */
        @media (max-width: 768px) {
            .countdown-container {
                padding: 30px 20px;
                border-radius: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.05rem;
            }
            
            .cta-text {
                font-size: 1.25rem;
            }
            
            .custom-countdown {
                gap: 10px;
            }
            
            .countdown-item {
                min-width: 75px;
            }
            
            .countdown-value {
                font-size: 2.2rem;
            }
            
            .btn-primary {
                font-size: 1.05rem;
                padding: 16px 35px;
            }
            
            .features {
                flex-direction: column;
                gap: 15px;
            }
            
            .feature {
                min-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .countdown-value {
                font-size: 1.9rem;
                font-weight: 850;
            }
            
            .countdown-item {
                min-width: 65px;
            }
            
            .countdown-label {
                font-size: 0.6rem;
            }
        }



.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;
  margin: 0 auto;
  text-align: center;
  transition: all 0.3s ease;
}

/* 🔹 Animación sutil al pasar el cursor */
.card-duration:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

/* ✅ Responsivo para móviles */
@media (max-width: 768px) {
  .card-header {
    gap: 0.8rem;
  }

  .card-duration {
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .card-duration {
    font-size: 0.92rem;
    padding: 0.45rem 1rem;
    gap: 0.4rem;
  }
}

    

    

    .card-icon {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      background: var(--gold-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      font-size: 1.5rem;
    }

    .card-title {
      font-family: "Playfair Display", serif;
      font-size: 1.6rem;
      color: var(--gold-soft);
      margin: 0;
    }

    .stats-list {
      list-style: none;
      padding: 0;
      margin: 0;
      max-width: 500px;
      margin: 0 auto;
    }

    .stats-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .stats-list li:last-child {
      border-bottom: none;
    }

    .stat-label {
      color: var(--muted);
      font-weight: 500;
      font-size: 1.05rem;
    }

    .stat-value {
      color: var(--gold);
      font-weight: 600;
      font-size: 1.2rem;
    }

    .clients-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .client-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 12px;
      transition: var(--transition);
    }

    .client-item:hover {
      background: rgba(212, 175, 55, 0.1);
      transform: translateY(-3px);
    }

    .client-logo {
      width: 70px;
      height: 70px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--gold);
    }

    .client-name {
      color: var(--text);
      font-weight: 500;
      text-align: center;
      font-size: 1rem;
    }


            /* === Contenedor principal del carrusel === */
        .logo-carousel {
            position: relative;
            overflow: hidden;
            width: 100%;
            margin: 4rem auto;
            padding: 1.5rem 0;
            /* border-top: 1px solid var(--gold-light);
            border-bottom: 1px solid var(--gold-light); */
            max-width: 1400px;
        }

        /* === Pista de logos con animación más lenta === */
        .logo-track {
            display: flex;
            gap: 4rem;
            animation: scroll 60s linear infinite; /* Reducida velocidad de 40s a 60s */
            width: max-content;
            align-items: center;
            will-change: transform;
        }

        /* Pausa la animación al hacer hover */
        .logo-carousel:hover .logo-track {
            animation-play-state: paused;
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 140px;
            height: 70px;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--gold-light), transparent);
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .logo-item:hover::before {
            opacity: 1;
        }

        .logo-track img {
            height: 50px;
            width: auto;
            filter: grayscale(100%) brightness(0.8);
            opacity: 0.7;
            transition: all 0.4s ease;
            object-fit: contain;
        }

        .logo-item:hover img {
            filter: grayscale(0%) brightness(1.1);
            opacity: 1;
            transform: scale(1.08);
        }

        /* Animación de desplazamiento más lenta */
        @keyframes scroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(calc(-140px * 12 - 4rem * 11)); }
        }

        /* === Efectos de desvanecimiento lateral mejorados === */
        .logo-carousel::before,
        .logo-carousel::after {
            content: "";
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }

        .logo-carousel::before {
            left: 0;
            /* background: linear-gradient(to right, var(--bg-dark) 0%, rgba(10, 10, 10, 0) 100%); */
        }

        .logo-carousel::after {
            right: 0;
            /* background: linear-gradient(to left, var(--bg-dark) 0%, rgba(10, 10, 10, 0) 100%); */
        }

        /* === Efectos de partículas mejorados === */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: var(--gold-light);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @media (max-width: 768px) {
  .logo-carousel {
    margin-top: 80px !important;
  }
}



        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* === Ajustes para tablets === */
        @media (max-width: 1024px) {
            .logo-track {
                gap: 3rem;
                animation-duration: 80s; /* Velocidad reducida también en tablets */
            }
            
            .logo-item {
                min-width: 120px;
                height: 60px;
            }
            
            .logo-track img {
                height: 45px;
            }
        }

        /* === Ajustes para móviles === */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }
            
            .logo-carousel {
                margin: 1rem auto;
                padding: 2rem 0;
                
            }

            .logo-track {
                gap: 2rem;
                animation-duration: 80s; /* Velocidad reducida también en móviles */
            }

            .logo-item {
                min-width: 90px;
                height: 50px;
            }

            .logo-track img {
                height: 35px;
            }

            .logo-carousel::before,
            .logo-carousel::after {
                width: 60px;
            }

            @keyframes scroll {
                0%   { transform: translateX(0); }
                100% { transform: translateX(calc(-90px * 12 - 2rem * 11)); }
            }
        }

        @media (max-width: 480px) {
            .logo-track {
                gap: 1.5rem;
                animation-duration: 80s; /* Velocidad reducida también en móviles pequeños */
            }

            .logo-item {
                min-width: 80px;
                height: 45px;
            }

            .logo-track img {
                height: 30px;
            }
            
            .logo-carousel::before,
            .logo-carousel::after {
                width: 40px;
            }
            
            @keyframes scroll {
                0%   { transform: translateX(0); }
                100% { transform: translateX(calc(-80px * 12 - 1.5rem * 11)); }
            }
        }
  

    /* Responsivo */
    @media (max-width: 768px) {
      /* .instructor-container { gap: 2rem; } */
      .instructor-img { width: 180px; height: 180px; }
      .section-title { font-size: 1.8rem; }
      .instructor-name { font-size: 1.2rem; }
      .instructor-title { font-size: 1.1rem; }
      .instructor-stats { gap: 2rem; }
      .details-section { padding: 2rem 1.5rem; }
      .details-card { padding: 2rem; }
      .card-header { flex-direction: column; gap: 1rem; }
      .card-title { text-align: center; }
      .clients-grid { grid-template-columns: repeat(2, 1fr); }
      /* .logo-track { gap: 2rem; animation-duration: 20s; } */
      /* .logo-carousel::before, .logo-carousel::after { width: 60px; } */
    }

    @media (max-width: 480px) {
      .instructor-section { padding: 3rem 1.5rem 2rem; }
      .instructor-img { width: 120px; height: 120px; }
      .section-title { font-size: 1.6rem; }
      .instructor-name { font-size: 1.2rem; }
      .instructor-bio { font-size: 0.95rem; }
      .instructor-stats { gap: 1.5rem; }
      .instructor-stat-number { font-size: 1.7rem; }
      .details-section { padding: 1.5rem 1rem; }
      .details-card { padding: 1.5rem; }
      .card-icon { width: 50px; height: 50px; font-size: 1.3rem; }
      .card-title { font-size: 1.4rem; }
      .clients-grid { grid-template-columns: 1fr; }
      /* .logo-track img { height: 30px; } */
      /* .logo-carousel::before, .logo-carousel::after { width: 40px; } */
    }
/* 
.btn {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
} */

/* ======== Responsive ======== */
@media (max-width: 992px) {
  .faq {
    padding: 60px 20px;
  }

  .pregunta-cabecera {
    padding: 22px 25px;
  }

  .pregunta-titulo {
    font-size: 1.1rem;
  }

  .numero-pregunta {
    width: 34px;
    height: 34px;
    margin-right: 15px;
  }

  .cuerpo-pregunta {
    padding: 0 25px 25px 70px;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 50px 15px;
  }

  .pregunta-cabecera {
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
  }

  .pregunta-titulo {
    font-size: 1.05rem;
  }

  .numero-pregunta {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .cuerpo-pregunta {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 40px 10px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .pregunta-cabecera {
    padding: 16px 14px;
  }

  .pregunta-titulo {
    font-size: 1rem;
  }

  .numero-pregunta {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

  .cuerpo-pregunta {
    padding: 0 15px 15px 15px;
    font-size: 0.95rem;
  }

  .contacto-invitacion {
    padding: 25px 15px;
  }

  .btn {
    padding: 12px 26px;
    font-size: 0.95rem;
  }
}





        /* ==== CERTIFICATIONS SECTION ==== */
        .certifications-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        }

        .certifications-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .certification-card {
            background: rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2.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;
            transition: var(--transition);
        }

        .certification-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .certification-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gold-gradient);
        }

        .certification-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 12px;
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .certification-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--gold-soft);
            margin-bottom: 1rem;
        }

        .certification-description {
            color: var(--muted);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .certification-features {
            list-style: none;
        }

        .certification-features li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.8rem;
            color: var(--muted);
            transition: var(--transition);
        }

        .certification-features li:hover {
            color: var(--text);
            transform: translateX(5px);
        }

        .certification-features li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
            transition: var(--transition);
        }

        .certification-features li:hover::before {
            transform: translateX(3px);
        }

        /* ==== INSTRUCTOR SECTION ==== */
        .instructor-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        }

        .instructor-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            /* gap: 4rem; */
        }

        .instructor-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .instructor-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: #000;
            box-shadow: 0 10px 29px rgba(212, 175, 55, 0.151);
        }

        .instructor-info {
            flex: 1;
        }

        .instructor-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem;
            color: var(--gold-soft);
            margin-bottom: 0.5rem;
        }

        .instructor-title {
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .instructor-bio {
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 1.4rem;
            /* text-align: left; */
        }

        .instructor-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1rem;
        }

        .instructor-stat {
            text-align: center;
        }

        .instructor-stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
        }

        .instructor-stat-label {
            font-size: 0.9rem;
            color: var(--muted);
            margin-top: 0.3rem;
        }

        /* ==== PRESTIGE SECTION ==== */
        .prestige-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        }

        .prestige-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .prestige-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .prestige-item {
            background: rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            text-align: center;
            transition: var(--transition);
        }

        .prestige-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .prestige-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .prestige-item h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--gold-soft);
            margin-bottom: 1rem;
        }

        .prestige-item p {
            color: var(--muted);
            line-height: 1.6;
        }

        /* ==== FOOTER ==== */
     

        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            color: var(--gold-soft);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--muted);
            transition: var(--transition);
            text-decoration: none;
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            justify-content: center;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.2);
            color: var(--text);
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--gold);
            color: #000;
            transform: translateY(-5px);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* ==== ANIMATIONS ==== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandLine {
            to {
                transform: scaleX(1);
            }
        }

        /* ==== RESPONSIVE STYLES ==== */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.4rem;
            }
            
            .instructor-container {
                flex-direction: column;
                text-align: center;
            }
            
            .instructor-stats {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                margin-top: 7rem;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
                z-index: 10;
            }
            
            .card-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .card-footer {
                flex-direction: column;
                align-items: flex-start;
            }

            .program-info-section {
                padding: 2rem 2rem;
            }

            .certifications-grid {
                grid-template-columns: 1fr;
            }

            .diploma-preview {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .program-card {
                padding: 2rem 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }

            .program-info-section {
                padding: 2rem 1rem;
            }

            .diploma-preview {
                padding: 1.5rem 1rem;
            }
        }

    /* 🔸 Versión optimizada para pantallas grandes (web) */
/* 🔸 Ajustes solo para pantallas grandes */
@media (min-width: 1025px) {
  .content-background {
    max-width: 680px;       /* 🔹 Reduce el ancho */
    margin: 0 auto;
    padding: 2rem 2rem;     /* 🔹 Menor relleno */
    min-height: 340px;      /* 🔹 Altura mínima controlada */
    max-height: 520px;      /* 🔹 Evita que crezca demasiado */
    display: flex;          /* 🔹 Centra verticalmente el contenido */
    flex-direction: column;
    justify-content: center;
  }

  .content-background h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .content-background p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.8rem;
  }

  .hero-buttons {
    margin-top: 0.5rem;  /* 🔹 Compacta el espacio entre texto y botones */
  }
}


    /* Responsive */
        @media (max-width: 992px) {

            .hero-buttons .btn.btn-primary {
    font-size: 1rem;   /* texto más grande */
    padding: 0.8rem 1.8rem; /* botón más amplio */
  }

            header.hero h1 {
                font-size: 2.8rem;
            }

              .hero-title {
        font-size: 3rem;
      }
      
      .section-title {
        font-size: 2.4rem;
      }
      
      .geometric-shapes {
        display: none;
      }
      
      .features-grid {
        grid-template-columns: 1fr;
      }

            /* .hero-buttons {
                flex-direction: column;
                align-items: center;
            } */
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
                z-index: 10;
            }

            .content-background {
                padding: 2rem 1rem;
            }
        }

         @media (max-width: 768px) {

    

             .program-info-section {
      background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
      padding: 2rem 2rem;
      position: relative;
      overflow: hidden;
    }
            .hero-content h1 {
    margin-top: 80px; /* un poco más de espacio en móviles */
  }
            header.hero {
                padding:  8px;
            }

             .hero-title {
        font-size: 2.5rem;
      }

      .hero-description {
        font-size: 1.1rem;
      }

      .hero-stats {
        gap: 1.5rem;
      }

      .stat-number {
        font-size: 2.2rem;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
          margin-top: 7rem; /* ajusta según necesites */
      }

        .hero-buttons-1 {
        flex-direction: column;
        align-items: center;
          margin-top: 7rem; /* ajusta según necesites */
      }


      
      .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        z-index: 10;
      }
      
      .card-header {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .card-footer {
        flex-direction: column;
        align-items: flex-start;
      }

            header.hero h1 {
                font-size: 2.4rem;
            }
                  header.hero p {
                font-size: 1.1rem;
            }

              .content-background {
                padding: 2rem 1rem;
            }

                 section {
                padding: 4rem 1.5rem;
            }


          }

              
        @media (max-width: 480px) {

             .program-info-section {
      background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
      padding: 2rem 1rem;
      position: relative;
      overflow: hidden;
    }
            .hero-content h1 {
    margin-top: 80px; /* un poco más de espacio en móviles */
  }

            .hero-title {
        font-size: 2rem;
      }

      .hero-description {
        font-size: 1rem;
      }

      .hero-stats {
        flex-direction: column;
        gap: 1rem;
      }

      .program-card {
        padding: 2rem 1rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
            header.hero h1 {
                font-size: 2rem;
            }
            
            header.hero p {
                font-size: 1rem;
            }

            .content-background {
                padding: 1.5rem 1rem;
            }
        }

    /* Responsive */
    @media (max-width: 992px) {
      header.hero h1 {
        font-size: 2.6rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
          .hero1 h1 {
    top: -40px; /* un poco menos en móvil si prefieres */
  }
    

      header.hero1 h1 {
        font-size: 1.9rem;
         margin-top: -60px; /* súbelo más o menos según necesites */
      }

      header.hero p {
        font-size: 1.1rem;
      }

      section {
        padding: 4rem 1.5rem;
      }

      .card, .evolution-phase, .accreditation-item {
        padding: 2rem;
      }

      .form-container {
        padding: 2rem;
      }

      .complementary-level {
        padding: 2rem;
      }
    }

    @media (max-width: 576px) {
      header.hero h1 {
        font-size: 1.9rem;
 
      }

      .btn {
        width: 100%;
        max-width: 300px;
      }

      .cards-container,
      .accreditation-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }
    }




        .premium-benefits {
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #0a0a0a, #181818);
            border-radius: 25px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        /* Elementos decorativos */
        .premium-benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-gradient);
        }

        .bg-decoration {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            color: var(--gold);
        }

        .decoration-top {
            top: -30px;
            right: -30px;
            font-size: 10rem;
        }

        .decoration-bottom {
            bottom: -30px;
            left: -30px;
            font-size: 8rem;
        }

        .header-section {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
        }

        .main-title {
            color: var(--gold-soft);
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 2px;
        }

        .title-description {
            color: var(--muted);
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Certificación Doble */
        .dual-certification {
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .dual-certification:hover {
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-5px);
        }

        .cert-badge {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: var(--bg-dark);
        }

        .cert-main-title {
            color: var(--gold-soft);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .cert-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .cert-card {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .cert-card:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-3px);
        }

        .cert-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cert-name {
            color: var(--gold-soft);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .cert-description {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Categorías de Beneficios */
        .benefits-categories {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .category-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gold-gradient);
            transform: scaleY(0);
            transition: var(--transition);
        }

        .category-card:hover {
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: var(--shadow);
            transform: translateY(-5px);
        }

        .category-card:hover::before {
            transform: scaleY(1);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .category-badge {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--bg-dark);
            flex-shrink: 0;
            transition: var(--transition);
        }

        /* .category-card:hover .category-badge {
            transform: scale(1.1) rotate(5deg);
        } */

        .category-title {
            color: var(--gold-soft);
            font-size: 1.6rem;
            margin: 0;
            font-weight: 600;
        }

        .features-list {
            list-style: none;
            padding: 0;
            display: grid;
            gap: 1rem;
        }

        .feature-element {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.05);
            transition: var(--transition);
        }

        .feature-element:hover {
            background: rgba(212, 175, 55, 0.08);
            transform: translateX(5px);
        }

        .feature-icon {
            color: var(--gold);
            font-size: 1.1rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .feature-content {
            color: var(--muted);
            line-height: 1.6;
            font-size: 1.05rem;
        }

        /* Full Support Section */
        .premium-support {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3rem;
            text-align: center;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .premium-support:hover {
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-5px);
        }

        .support-badge {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--bg-dark);
        }

        .premium-support h3 {
            color: var(--gold-soft);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .support-card {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .support-card:hover {
            background: rgba(212, 175, 55, 0.15);
            transform: translateY(-3px);
        }

        .support-card h4 {
            color: var(--gold-soft);
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }

        .support-card p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Partículas doradas */
        .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .gold-particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            animation: floatAnimation 15s infinite linear;
            opacity: 0.1;
        }

        @keyframes floatAnimation {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.05;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .premium-benefits {
                padding: 3rem 1.5rem;
            }
            
            .main-title {
                font-size: 3rem;
            }
            
            .title-description {
                font-size: 1.1rem;
            }
            
            .dual-certification {
                padding: 2rem;
            }
            
            .cert-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .category-card {
                padding: 2rem;
            }
            
            .category-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .premium-support {
                padding: 2rem;
            }
            
            .support-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .premium-benefits {
                padding: 2rem 1rem;
            }
            
            .main-title {
                font-size: 3rem;
            }
            
            .dual-certification {
                padding: 1.5rem;
            }
            
            .cert-badge {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .category-card {
                padding: 1.5rem;
            }
            
            .category-badge {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .category-title {
                font-size: 1.4rem;
            }
            
            .feature-element {
                padding: 0.8rem;
            }
            
            .premium-support {
                padding: 1.5rem;
            }
        }



 .garantia-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #0a0a0a, #181818);
            border-radius: 25px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .garantia-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold-gradient);
        }

        /* Header Section */
        .header-garantia {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
        }

        .main-title {
            color: var(--gold-soft);
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        /* .subtitle {
            color: var(--gold);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 2rem;
        } */

        /* Garantía Principal */
        .garantia-principal {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(241, 224, 166, 0.05));
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .garantia-principal:hover {
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .garantia-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            color: var(--bg-dark);
        }

        .garantia-titulo {
            color: var(--gold-soft);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .garantia-descripcion {
            color: var(--muted);
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .garantia-destacado {
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 15px;
            padding: 0.6rem;
            margin: 2rem 0;
        }

        .garantia-destacado p {
            color: var(--gold-soft);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            text-align: center;
        }

        /* Sección de Inversión */
        .inversion-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .inversion-section:hover {
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-3px);
        }

        .inversion-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .inversion-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gold-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--bg-dark);
            flex-shrink: 0;
        }

        .inversion-titulo {
            color: var(--gold-soft);
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0;
        }

        .inversion-descripcion {
            color: var(--muted);
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .inversion-beneficios {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .beneficio1-item {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: var(--transition);
        }

        .beneficio1-item:hover {
            background: rgba(212, 175, 55, 0.08);
            transform: translateX(5px);
        }

        .beneficio-icon {
            color: var(--gold);
            font-size: 1.7rem;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .beneficio-text {
            color: var(--muted);
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(241, 224, 166, 0.08));
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-titulo {
            color: var(--gold-soft);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-descripcion {
            color: var(--muted);
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--gold-gradient);
            color: var(--bg-dark);
            text-decoration: none;
            padding: 1.2rem 2rem;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

         .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
           font-weight: 900;
            color: var(--gold);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #D4AF37 0%, #F4E4A6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            /* color: var(--gold-light); */
            color: #fde8e8;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--gold-gradient);
            color: #000;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 1.2rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-gold);
            border: none;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: var(--transition);
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
            /* background: var(--gold-gradient-hover); */
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-footer {
            margin-top: 2.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .cta-footer-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-footer-icon {
            color: var(--success);
        }

        .garantia-destacado .estrella {
    color: #d4af37; /* Dorado */
    margin: 0 6px;
    font-size: 1.2rem;
}
.garantia-secundaria {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.07);
    border-left: 4px solid #d4af37;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    border-radius: 6px;
}


      
        /* Responsive Mejorado */
        @media (max-width: 968px) {
            /* .hero-title {
                font-size: 3rem;
            } */
            
            .cta-title {
                font-size: 2.8rem;
            }
            
            /* .highlight-title, .investment-title {
                font-size: 2.2rem;
            } */
        }

        @media (max-width: 768px) {
            /* .hero-title {
                font-size: 2.5rem;
            } */
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .guarantee-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .guarantee-card {
                padding: 2.5rem 2rem;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .cta-subtitle {
                font-size: 1.2rem;
            }
            
            .cta-button {
                padding: 1.3rem 3rem;
                font-size: 1.2rem;
            }
            
            .highlight-section, .investment-section {
                padding: 3rem 2rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

         /* Responsive Design */
        @media (max-width: 768px) {
            .garantia-section {
                padding: 3rem 1.5rem;
            }
            
            .main-title {
                font-size: 3rem;
            }
            
            .garantia-principal {
                padding: 1.1rem;
            }
            
            .garantia-titulo {
                font-size: 1.8rem;
            }
            
            .garantia-descripcion {
                font-size: 1.1rem;
            }
            
            .inversion-section {
                padding: 0.9rem;
            }
            
            .inversion-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .inversion-beneficios {
                grid-template-columns: 1fr;
            }
            
            .cta-section {
                padding: 2rem;
            }
            
            .cta-titulo {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .garantia-section {
                padding: 2rem 1rem;
            }
            
            .main-title {
                font-size: 2.3rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .garantia-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
            
            .cta-button {
                padding: 1rem 2rem;
                font-size: 1.1rem;
            }
        }



         /* Contador de Plazas - Versión Mejorada */
        .plazas-counter {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(239, 68, 68, 0.05) 100%);
            border: 1px solid rgba(245, 158, 11, 0.15);
            border-radius: var(--radius-lg);
            padding: 1.8rem;
            text-align: center;
            max-width: 320px;
            margin: 0 auto;
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            margin-top: 25px;
        }

        .plazas-counter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold-gradient);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .plazas-counter::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .plazas-counter:hover {
            transform: translateY(-2px);
            border-color: rgba(245, 158, 11, 0.25);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
        }

        .counter-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }

        .counter-icon {
            color: var(--warning);
            font-size: 1.3rem;
        }

        .counter-title {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 600;
        }

        .counter-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--warning);
            margin-bottom: 0.5rem;
            line-height: 1;
            text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        .counter-number.urgent {
            color: var(--urgent);
            text-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
            animation: pulseUrgent 2s ease-in-out infinite;
        }

        @keyframes pulseUrgent {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .counter-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 1.2rem;
        }

        .counter-progress-container {
            margin: 1.2rem 0;
        }

        .counter-progress-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        .counter-progress {
            height: 6px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }

        .counter-progress-bar {
            height: 100%;
            background: var(--gold-gradient);
            border-radius: 3px;
            width: 75%; /* Inicial: 25 de 32 ocupadas = 78% */
            transition: width 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
        }

        .counter-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 2px;
            height: 100%;
            background: rgba(255, 255, 255, 0.5);
            animation: progressShine 2s ease-in-out infinite;
        }

        @keyframes progressShine {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .counter-note {
            font-size: 0.8rem;
            color: var(--warning);
            margin-top: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .counter-note.urgent {
            color: var(--urgent);
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Animación sutil para el contador */
        @keyframes subtleGlow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
            }
            50% { 
                box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
            }
        }

        .plazas-counter {
            animation: subtleGlow 4s ease-in-out infinite;
        }

       /* Responsive Mejorado */
        @media (max-width: 768px) {
            .plazas-counter {
                max-width: 100%;
                padding: 1.5rem;
            }
            
            .counter-number {
                font-size: 2.4rem;
            }
           
        }

        @media (max-width: 480px) {
         
            
            .enroll-btn {
                padding: 1.1rem 2rem;
                font-size: 1rem;
                width: 100%;
                justify-content: center;
                border-radius: 12px;
            }
            
            .counter-number {
                font-size: 2rem;
            }
            
          
        }
            
