/* ============================================
           HERO SECTION SÓLIDO - SIN EFECTOS RAROS
           Color corporativo: #002e60
           ============================================ */
        
        .portada_catalogo_hero {
            background: #002e60;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 80px 20px;
        }

        /* Formas decorativas SÓLIDAS */
        .portada_catalogo_forma {
            position: absolute;
            background: rgba(100, 204, 197, 0.08);
        }

        .portada_catalogo_forma:nth-child(1) {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
            border-radius: 50%;
        }

        .portada_catalogo_forma:nth-child(2) {
            width: 300px;
            height: 300px;
            bottom: -80px;
            left: -80px;
            border-radius: 50%;
        }

        .portada_catalogo_forma:nth-child(3) {
            width: 200px;
            height: 200px;
            top: 40%;
            left: 5%;
            border-radius: 50%;
        }

        /* Contenedor del contenido */
        .portada_catalogo_contenido {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 10;
            text-align: center;
        }

        /* Badge superior */
        .portada_catalogo_badge {
            display: inline-block;
            background:#00F2C3;
            color: #002e60;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 35px;
            animation: portada_catalogo_aparecer 0.6s ease forwards;
            opacity: 0;
        }

        @keyframes portada_catalogo_aparecer {
            to { opacity: 1; }
        }

        /* Título principal */
        .portada_catalogo_titulo {
            font-size: clamp(48px, 7vw, 85px);
            font-weight: 900;
            color: white;
            margin-bottom: 25px;
            line-height: 1.1;
            letter-spacing: -2px;
            animation: portada_catalogo_aparecer 0.6s ease 0.2s forwards;
            opacity: 0;
        }

        /* Palabra destacada */
        .portada_catalogo_destacado {
            color: #00F2C3;
        }

        /* Descripción */
        .portada_catalogo_descripcion {
            font-size: clamp(18px, 2.2vw, 24px);
            color: rgba(255, 255, 255, 0.9);
            max-width: 850px;
            margin: 0 auto 50px;
            line-height: 1.7;
            font-weight: 400;
            animation: portada_catalogo_aparecer 0.6s ease 0.4s forwards;
            opacity: 0;
        }
        
        
        
     

        /* Contenedor de botón */
        .portada_catalogo_cta_contenedor {
            margin-bottom: 70px;
            animation: portada_catalogo_aparecer 0.6s ease 0.6s forwards;
            opacity: 0;
        }

        /* Botón primario */
        .portada_catalogo_boton {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 45px;
            font-size: 18px;
            font-weight: 700;
            color: #002e60;
            background: #00F2C3;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .portada_catalogo_boton:hover {
            transform: translateY(-3px);
            background: #5abdb6;
        }

        /* Grid de métricas */
        .portada_catalogo_metricas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
            animation: portada_catalogo_aparecer 0.6s ease 0.8s forwards;
            opacity: 0;
        }

        .portada_catalogo_metrica {
            background: rgba(100, 204, 197, 0.1);
            padding: 30px 20px;
            border-radius: 15px;
            border: 2px solid rgba(100, 204, 197, 0.3);
            transition: all 0.3s ease;
        }

        .portada_catalogo_metrica:hover {
            transform: translateY(-8px);
            border-color: #00F2C3;
            background: rgba(100, 204, 197, 0.15);
        }

        .portada_catalogo_numero {
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 900;
            color: #00F2C3;
            display: block;
            margin-bottom: 8px;
            line-height: 1;
        }

        .portada_catalogo_label {
            font-size: 1em;
            color: white;
            font-weight: 600;
                }







/** para el 2x1 **/

.banner-oferta {
  display: inline-block; 
  padding: 12px 25px; 
  margin-bottom: 25px; 
  background-color: rgba(0, 255, 194, 0.1);
  border: 2px solid #00F2C3;
  color: #FFFFFF; 
  border-radius: 30px; 
  font-weight: 700; 
  font-size: 1.1em; 
  transition: all 0.3s ease;
}


.banner-oferta:hover {
  background-color: rgba(0, 255, 194, 0.2); 
  transform: scale(1.03); 
}

/*
 * ESTILOS PARA EL NUEVO CONTADOR DEL CATÁLOGO
 */


.catalogo-countdown {
  color: #FFFFFF;
  text-align: center; 
  margin-bottom: 30px; 
}


.catalogo-countdown-texto {
  font-size: 0.9em;
  opacity: 0.8;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}


.catalogo-countdown-cajas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; 
}


.catalogo-countdown-caja {
  background-color: rgba(0, 255, 194, 0.1); 
  border: 1px solid #00F2C3;
  border-radius: 8px; 
  padding: 10px;
  min-width: 75px; 
  box-shadow: 0 4px 15px rgba(0, 255, 194, 0.05); 
}

.catalogo-countdown-caja .numero {
  display: block;
  font-size: 2.2em; 
  font-weight: 700; 
  color: #00F2C3; 
  line-height: 1.1;
}


.catalogo-countdown-caja .etiqueta {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.7;
}




















.section_list_cursos_catalogo{
    max-width: 1300px;
    margin: 50px auto;

}


.titulo_cursos_catalogo{
    font-size: 52px;
    font-weight: 900;
    color: #002e60;
    margin-bottom: 24px;
    line-height: 1.2;
}



.list_cursos_catalogo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* ============================================
   TARJETA DEL CURSO
   ============================================ */

.tarjeta_curso_link {
    text-decoration: none;
    display: block;
}

.tarjeta_curso_cd {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tarjeta_curso_cd:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 46, 96, 0.2);
}

.tarjeta_curso_cont_img {
    position: relative;
    height: 220px;
    background: #002e60;
    overflow: hidden;
}

.tarjeta_curso_cont_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}



.tarjeta_curso_contenido_wrap {
    padding: 25px;
}

.tarjeta_curso_titul h2 {
    font-size: 22px;
    font-weight: 700;
    color: #002e60;
    margin: 0 0 15px 0;
    line-height: 1.3;
    min-height: 60px;
}

/* Rating con estrellas */
.tarjeta_curso_rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.tarjeta_curso_estrellas {
    display: flex;
    gap: 2px;
    color: #FFD700;
    font-size: 14px;
}

.tarjeta_curso_rating_numero {
    color: #002e60;
    font-weight: 600;
    font-size: 13px;
}

.tarjeta_curso_rating_total {
    color: #999;
    font-size: 13px;
}

/* Meta info */
.tarjeta_curso_meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.tarjeta_curso_meta_item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.tarjeta_curso_meta_item i {
    color: #00F2C3;
    font-size: 14px;
}

.tarjeta_curso_duration {
    margin-bottom: 20px;
}

.tarjeta_curso_duration p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 10px 15px;
    border-radius: 10px;
}

.tarjeta_curso_duration i {
    font-size: 16px;
}

#tarjeta_curso_matricula {
    background: rgba(100, 204, 197, 0.1);
    color: #002e60;
    border: 2px solid rgba(100, 204, 197, 0.3);
}

#tarjeta_curso_matricula i {
    color: #00F2C3;
}

#tarjeta_curso_proxima_fecha {
    background: rgba(255, 165, 0, 0.1);
    color: #002e60;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

#tarjeta_curso_proxima_fecha i {
    color: #FFA500;
}

.tarjeta_curso_duration img {
    width: 20px;
    height: 20px;
}

.tarjeta_curso_cost {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.tarjeta_curso_cost p {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0;
}

#tarjeta_curso_span_p_1 {
    background: #FF6B6B;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

#tarjeta_curso_span_p_2 {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 500;
}

#tarjeta_curso_span_p_3 {
    background: #002e60;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: 900;
}

.tarjeta_curso_ver_mas {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: #002e60;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}














/*** para la parte de los testimonios ***/

/* ============================================
           SECCIÓN DE TESTIMONIOS - CATÁLOGO
           ============================================ */
        
        .section_testimonios_catalogo {
            background: #f8f9fa;
            padding: 80px 20px;
            position: relative;
        }

        .section_testimonios_catalogo_contenedor {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Título */
        .section_testimonios_catalogo_titulo {
            text-align: center;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            color: #002e60;
            margin-bottom: 60px;
            position: relative;
        }

        .section_testimonios_catalogo_titulo::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #00F2C3;
            border-radius: 2px;
        }

        /* Grid de testimonios */
        .section_testimonios_catalogo_grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 30px;
        }

        /* Tarjeta de testimonio */
        .section_testimonios_catalogo_card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .section_testimonios_catalogo_card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 46, 96, 0.15);
        }

        .section_testimonios_catalogo_card img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

       

        /* Botón ver todas */
        .section_testimonios_catalogo_btn_contenedor {
            text-align: center;
            margin-top: 50px;
        }

        .section_testimonios_catalogo_btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #002e60;
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 46, 96, 0.3);
        }

        .section_testimonios_catalogo_btn:hover {
            background: #00F2C3;
            color: #002e60;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(100, 204, 197, 0.4);
        }








/*** Diseño del contenido del carrusel 1 **/


/* ============================================
           CARRUSEL UCIENCY - DISEÑO DE CONTENIDO
           Todo lo relacionado con el aspecto visual de las tarjetas
           ============================================ */

        /* Header de la sección */
        .carrusel_uciency_header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .carrusel_uciency_badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #00F2C3;
            color: #002e60;
            padding: 10px 24px;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .carrusel_uciency_title {
            color: #002e60;
            font-size: clamp(28px, 5vw, 40px);
            font-weight: 900;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .carrusel_uciency_subtitle {
            color: #6b7280;
            font-size: clamp(14px, 3vw, 18px);
            font-weight: 500;
        }

        /* Tarjetas base */
        .carrusel_uciency_card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 46, 96, 0.08);
            transition: all 0.3s ease;
            border: 2px solid #f3f4f6;
            display: flex;
            flex-direction: column;
        }





        /* Header de las tarjetas */
        .carrusel_uciency_card_header {
            height: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 24px;
        }

        /* TARJETA 1 - Intro (Azul oscuro) */
        .carrusel_uciency_card_intro .carrusel_uciency_card_header {
            background: linear-gradient(135deg, #002e60 0%, #003d7a 100%);
        }

        .carrusel_uciency_icon_stack {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .carrusel_uciency_icon_box {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(0, 242, 195, 0.3);
            backdrop-filter: blur(10px);
        }

        .carrusel_uciency_icon_box i {
            font-size: 26px;
            color: #ffffff;
        }

        .carrusel_uciency_plus {
            font-size: 28px;
            color: #00F2C3;
            font-weight: 900;
        }

        .carrusel_uciency_tagline {
            text-align: center;
        }

        .carrusel_uciency_tagline_main {
            color: white;
            font-size: 20px;
            font-weight: 800;
            line-height: 1.2;
        }

        .carrusel_uciency_tagline_highlight {
            color: #00F2C3;
            font-size: 24px;
            font-weight: 900;
        }

        /* TARJETA 2 - Certificación (Turquesa) */
        .carrusel_uciency_card_cert .carrusel_uciency_card_header {
            background: linear-gradient(135deg, #00F2C3 0%, #00d9b5 100%);
        }

        .carrusel_uciency_icon_large {
            font-size: 72px;
            color: #002e60;
            filter: drop-shadow(0 4px 8px rgba(0, 46, 96, 0.2));
        }

        /* TARJETA 3 - Acceso (Morado) */
        .carrusel_uciency_card_access .carrusel_uciency_card_header {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        }

        .carrusel_uciency_card_access .carrusel_uciency_icon_large {
            color: white;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        /* TARJETA 4 - CTA (Verde) */
        .carrusel_uciency_card_cta .carrusel_uciency_card_header {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            padding: 28px 20px;
        }

        .carrusel_uciency_price_display {
            text-align: center;
            width: 100%;
        }

        .carrusel_uciency_price_old {
            color: rgba(255, 255, 255, 0.7);
            font-size: 18px;
            text-decoration: line-through;
            font-weight: 500;
            margin-bottom: 6px;
        }

        .carrusel_uciency_price_new {
            color: white;
            font-size: 48px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 12px;
        }

        .carrusel_uciency_discount_badge {
            background: #ef4444;
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 800;
            display: inline-block;
        }

        /* Body de las tarjetas */
        .carrusel_uciency_card_body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .carrusel_uciency_card_title {
            font-size: 18px;
            font-weight: 700;
            color: #002e60;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .carrusel_uciency_card_description {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 16px;
            flex: 1;
        }

        .carrusel_uciency_card_feature {
            background: #ecfdf5;
            border-left: 3px solid #10b981;
            padding: 12px 14px;
            border-radius: 8px;
            font-size: 13px;
            color: #059669;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .carrusel_uciency_card_feature i {
            font-size: 14px;
        }

        /* Botones CTA */
        .carrusel_uciency_buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: auto;
        }

        .carrusel_uciency_btn {
            padding: 14px 20px;
            border-radius: 12px;
            border: none;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
        }

        .carrusel_uciency_btn i {
            font-size: 16px;
        }

        .carrusel_uciency_btn_primary {
            background: #00F2C3;
            color: #002e60;
            box-shadow: 0 4px 12px rgba(0, 242, 195, 0.3);
        }

        .carrusel_uciency_btn_primary:hover {
            background: #00fff5;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 242, 195, 0.4);
        }

        .carrusel_uciency_btn_whatsapp {
            background: #25D366;
            color: white;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        .carrusel_uciency_btn_whatsapp:hover {
            background: #20BA5A;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }













/************ para el carrusel de los packs *******/

/* ============================================
   DISEÑO DE PACKS - CONTENIDO ESPECÍFICO
   Estilos exclusivos para las tarjetas de packs
   ============================================ */

#seccion_debajo_portada{
    margin-top: 40px;
}



/* Tarjeta Pack Base */
.pack-card {
    min-height: 520px;
    background: white;
}

.pack-card .carrusel_uciency_card_header {
    padding: 28px 24px;
    height: auto;
    min-height: 220px;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.pack-card .carrusel_uciency_card_header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Etiqueta superior del pack */
.pack-etiqueta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Título del pack */
.pack-titulo {
    color: white;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Stack de cursos incluidos */
.pack-cursos-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.curso-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.curso-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.curso-tag i {
    font-size: 15px;
}

.curso-plus {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Body del pack */
.pack-card .carrusel_uciency_card_body {
    padding: 28px 24px;
}

/* Descripción del pack */
.pack-descripcion {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Lista de beneficios */
.pack-beneficios {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}

.pack-beneficios li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #10b981;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: #ecfdf5;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.pack-beneficios li i {
    font-size: 15px;
    color: #10b981;
}

/* Precios - ARREGLADO */
.pack-precios {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 24px;
}

.pack-precio-final {
    font-size: 1.6em;
    font-weight: 900;
    line-height: 1;
}

.pack-precio-old {
    font-size: 16px;
    color: #8a929b;
    text-decoration: line-through;
    font-weight: 600;
}

/* Botón CTA del pack */
.pack-cta-button {
    display: block;
    padding: 16px 20px;
    color: #002e60;
    text-align: center;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    border:2px solid #002e60;
}

.pack-cta-button:hover {
    background: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.4);
    color: #fff;
}

/* COLORES TEMÁTICOS POR PACK */

/* Pack 1 - GIS Total (Azul) */
.pack-card:nth-child(1) .carrusel_uciency_card_header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.pack-precio-final {
    color: #1e40af;
}





/* Pack 2 - Gestión de Riesgos (Naranja) */
.pack-card:nth-child(2) .carrusel_uciency_card_header {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}



/* Pack 3 - Diseño e Infraestructura (Morado) */
.pack-card:nth-child(3) .carrusel_uciency_card_header {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}



/* Pack 4 - Gestión de Obras (Verde Oscuro) */
.pack-card:nth-child(4) .carrusel_uciency_card_header {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
}



/* Pack 5 - Drones (Cian/Turquesa) */
.pack-card:nth-child(5) .carrusel_uciency_card_header {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}





/* ============================================
   POPUP CATÁLOGO - DISEÑO MODERNO Y LIMPIO
   ============================================ */

/* Contenedor principal del popup */
#popup-catalogo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Estado oculto por defecto */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Estado visible */
#popup-catalogo.visible {
    opacity: 1;
    visibility: visible;
}

/* Overlay oscuro de fondo */
.popup-catalogo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#popup-catalogo.visible .popup-catalogo-overlay {
    opacity: 1;
}

/* Bloquear scroll del body cuando popup está abierto */
body.popup-abierto {
    overflow: hidden;
}

/* Contenedor del contenido del popup */
.popup-catalogo-content {
    position: relative;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    max-width: 580px;
    width: 92%;
    max-height: 92vh;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    
    /* Animación de entrada */
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease;
    scrollbar-color: #aaa #f0f0f0;
    scrollbar-width: thin;
}

#popup-catalogo.visible .popup-catalogo-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}



.popup-catalogo-content::-webkit-scrollbar {
    width: 8px;
}

.popup-catalogo-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.popup-catalogo-content::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 10px;
    border: 2px solid #f0f0f0; 
}

.popup-catalogo-content::-webkit-scrollbar-thumb:hover {
    background-color: #888;
}

/* Botón cerrar (X) */
.popup-catalogo-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1002;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.popup-catalogo-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}










/* Header del popup */
.popup-catalogo-header {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 16px 16px 0 0;
}

.popup-titulo-confirmacion {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.3px;
}

.popup-pack-nombre {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.95;
}

.popup-catalogo-body {
  padding: 1.5rem;
  background: #fff;
  border-radius: 0 0 16px 16px;
}

.popup-oferta_actual {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.popup-cta-final {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: #2c3e50;
  color: white;
  border: 2px solid #2c3e50;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.popup-cta-final:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-1px);
}

.popup-resumen-valor {
  background: #f8f9fa;
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  border: 1px solid #e9ecef;
}

.popup-curso-item {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e9ecef;
}

.popup-curso-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popup-curso-nombre {
  font-size: 1rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 0.75rem 0;
}

.popup-curso-beneficios {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popup-curso-beneficios li {
  padding: 0.4rem 0;
  color: #5a6c7d;
  font-size: 0.9rem;
  line-height: 1.4;
}

.popup-curso-beneficios li:before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  margin-right: 0.6rem;
}

.popup-beneficios-generales {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.popup-beneficios-generales li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  padding: 0.7rem 1rem;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #d1fae5;
}

.popup-beneficios-generales i {
  color: #10b981;
  font-size: 1rem;
}





/* --- La Franja/Cinta Principal de Promoción --- */
#contador_popup {
  display: flex; /* Activa Flexbox */
  justify-content: space-between; /* Empuja el texto a la izq. y el timer a la der. */
  align-items: center; /* Centra todo verticalmente */
  
  background-color: #d9534f; /* Un tono rojo llamativo para ofertas */
  color: white; /* Texto blanco para que contraste */
  padding: 10px 25px; /* Espaciado interno (10px arriba/abajo, 25px izq/der) */
  font-family: Arial, sans-serif; /* Una fuente limpia */
  box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Una sombra suave opcional */
}

/* --- Texto de la Izquierda --- */
.contador-popup-text h2 {
  margin: 0; /* Quita márgenes por defecto del H2 */
  font-size: 1.25rem; /* Aumenta el tamaño del texto de la oferta */
  font-weight: bold;
}

/* --- Contenedor del Timer (Derecha) --- */
.contador-popup-timer-inline {
  display: flex; /* Alinea los bloques del timer (HRS, MIN, SEG) */
  align-items: center; /* Centra los bloques y los separadores (:) */
}

/* --- Bloque individual (Ej: 00 HRS) --- */
.timer-block {
  display: flex;
  flex-direction: column; /* Pone el número encima de la etiqueta (HRS) */
  align-items: center; /* Centra el número y la etiqueta */
  margin: 0 6px; /* Espacio entre los bloques (ej. entre HRS y MIN) */
  min-width: 40px; /* Asegura que tengan un ancho similar */
}

/* --- Los Números (00) --- */
.timer-block span[id^="contador_popup_"] {
  font-size: 1.8rem; /* Números grandes y visibles */
  font-weight: bold;
  line-height: 1; /* Ajusta la altura de línea */
}

/* --- Las Etiquetas (HRS, MIN, SEG) --- */
.timer-block .label {
  font-size: 0.7rem; /* Etiquetas más pequeñas */
  text-transform: uppercase; /* Mayúsculas */
}

/* --- El Separador (:) --- */
.separator {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 3px;
  /* Se alinea verticalmente gracias al 'align-items: center' del contenedor padre */
}







/* --- Estilos para Precio Tachado --- */
.popup-precio-tachado {
    
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
    
    /* Centrado junto con el texto de oferta */
    text-align: center; 
    margin-top: -10px; /* Sube un poco para pegarse al texto de oferta */
    margin-bottom: 1rem; /* Empuja el botón CTA hacia abajo */
}

.pop_up_catalogo_descuento{
    
}



/* --- Estilos para Franja de Testimonio --- */
.popup-testimonio {
    background: #f8f9fa; /* Un fondo sutil */
    border-left: 5px solid #667eea; /* Color de acento (el del header) */
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
}

.popup-testimonio blockquote {
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-style: italic;
    color: #34495e;
    font-size: 0.9rem;
    line-height: 1.5;
}

.popup-testimonio cite {
    display: block;
    text-align: right;
    font-weight: 600;
    font-style: normal;
    font-size: 0.85rem;
    color: #2c3e50;
}




/* --- Prueba Social Cuantitativa --- */

.popup-social-proof {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 1rem 0.75rem;
    margin-bottom: 1.25rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
    gap: 10px;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 0;
    flex-grow: 1;
    min-width: 80px;
}

.proof-item .proof-icon {
    font-size: 1.75rem; /* Tamaño del contenedor del ícono */
    margin-bottom: 0.5rem;
    line-height: 1;
    display: inline-block;
}

/* Color general para los íconos */
.proof-item .proof-icon i {
    color: #667eea; /* Tu color de acento (header) */
}

/* Color específico para la estrella */
.proof-item .proof-icon i.proof-icon-star {
    color: #FACC15; /* Tono dorado/amarillo */
}

.proof-item .proof-text {
    font-size: 0.8rem;
    color: #5a6c7d;
    line-height: 1.3;
    font-weight: 500;
}

.proof-item .proof-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 2px;
}
















        /********************************** PARA Responsive */
        @media (max-width: 768px) {
            .portada_catalogo_hero {
                min-height: 100vh;
                padding: 60px 20px;
            }

            .portada_catalogo_badge {
                font-size: 12px;
                padding: 10px 25px;
                margin-bottom: 25px;
            }

            .portada_catalogo_titulo {
                margin-bottom: 20px;
            }

            .portada_catalogo_descripcion {
                margin-bottom: 35px;
            }

            .portada_catalogo_cta_contenedor {
                margin-bottom: 50px;
            }

            .portada_catalogo_boton {
                justify-content: center;
                padding: 18px;
                font-size: 16px;
            }

            .portada_catalogo_metricas {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .portada_catalogo_metrica {
                padding: 25px 15px;
            }
            
            
            
            
            
            
            
        /** para el contenedor de la tarjeta **/
        
        .list_cursos_catalogo {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 20px;
    }
    
    /** para cada tarjeta **/
    .tarjeta_curso_contenido_wrap {
        padding: 20px;
    }
    
    .tarjeta_curso_titul h2 {
        font-size: 20px;
        min-height: auto;
    }
    
    #tarjeta_curso_span_p_3 {
        font-size: 20px;
        padding: 8px 16px;
    }
            
            
            
            
            
            
            
     /*** para los testimonios **/
     
      .section_testimonios_catalogo {
                padding: 60px 20px;
            }

            .section_testimonios_catalogo_titulo {
                margin-bottom: 40px;
            }

            .section_testimonios_catalogo_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section_testimonios_catalogo_btn {
                padding: 16px 35px;
                font-size: 15px;
            }
            
            
            
          /** parte del carrusel pero del contenido **/
          
          .carrusel_uciency_card:hover {
                /*transform: translateY(-8px);*/
                box-shadow: 0 12px 32px rgba(0, 46, 96, 0.15);
                border-color: #00F2C3;
            }
            
            
    /**** para el carrusel de los packs **/
     .pack-titulo {
        font-size: 19px;
    }

    .curso-tag {
        font-size: 12px;
        padding: 8px 14px;
    }

    .pack-precio-final {
        font-size: 36px;
    }
    
    .pack-precio-old {
        font-size: 14px;
    }

    .pack-card .carrusel_uciency_card_body {
        padding: 24px 20px;
    }
            
            
        
        /** para el pop up del packs **/
        
         .popup-catalogo-header {
            padding: 1.5rem 1rem;
          }
        
          .popup-titulo-confirmacion {
            font-size: 1.3rem;
          }
          
          .popup-catalogo-body {
            padding: 1.25rem;
          }
          
          .popup-cta-final {
            font-size: 0.9rem;
            padding: 0.85rem 1.25rem;
          }
                    
           #contador_popup {
            /* Cambia la dirección: de fila (horizontal) a columna (vertical) */
            flex-direction: column; 
            
            padding: 15px; /* Un padding más uniforme para la vista vertical */
            gap: 10px; /* Añade un espacio entre el texto y el bloque del timer */
          }
        
          .contador-popup-text h2 {
            text-align: center; /* Centra el título de la oferta */
            font-size: 1.1rem; /* Un ligero ajuste de tamaño para pantallas pequeñas */
          }
        
          .contador-popup-timer-inline {
            /* Aseguramos que los bloques del timer (HRS, MIN) estén centrados */
            justify-content: center;
          }
          
          
          
  
  
  
  
  
  
  
  
  
  
            
            
        }