
    :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;
} */


  
.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 */
}




    .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;
  }

  



        /* 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);
}


        /* 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;
            }
        }


    
/* 
          //////////////////////////////////////////// */
: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);



@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;
}

/* 🔸 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;
  }
}

/* === 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;
}


/* === 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 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;
      }

     
            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 */
  }
    


      .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;
      }
    }


        /* 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;
            }
            
          
        }
            
