* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

/* header flotante */
    header{
        width: 100%;
        height: 15%;
        position: fixed;
        z-index: 100;
        margin: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contenido-header{
        width: 80%;
        max-width: 1400px;
        height: 50%;
        border-radius: 50px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.50);
        background: #015e3d9d;
        backdrop-filter: blur(17px);
        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;

    }

    .div_logo {
        width: 25%;
        height: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .div_logo a img {
        width: 100%;
    }

    nav {
        width: 75%;
        height: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn_menu {
        background: none;
        border: none;
        color: white;
        font-size: 30px;
        display: none;
    }

    .nav_menu {
        list-style: none;
        margin: 0 !important;
        padding: 0;
        z-index: 100;
    }

    .nav_menu li {
        margin: 20px;
        padding: 5px;
        float: left;
    }

    .nav_menu li a {
        display: block;
        width: 100%;
        text-decoration: none;
        text-align: center;
        font-size: 15px;
        color: #FFFFFF;
        font-weight: 600;
        border: solid 2px transparent;
    }

    .nav_menu li a:hover {
        font-size: 15px;
        border-bottom: solid 2px #FFFFFF;
    }

    .active {
        border-bottom: solid 2px white !important;
    }
/* ----------- */

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
    background-color: white;
}

#div_contenedor {
    width: 100%;
    max-width: 100%;
}

    /* hero */

    .hero{
        width: 100%;
        height: 100%;
        background-image: url("../imagenes-area-comercial/hero-comercial.webp");
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #datos {
        width: 100%;
        max-width: 1200px;
        display: flex;
    }

    #anuncio{
        width: 65%;
        float: left;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        gap: 20px;
    }
    
        /* Inicialmente oculto */
        .area-comercial {
            display: flex;
            width: 252px;
            height: 41px;
            justify-content: center;
            align-items: center;
            gap: 10px;
            border-radius: 50px;
            border: 1px solid #009763;
            background: linear-gradient(272deg, rgba(0, 151, 99, 0.40) 17.53%, rgba(5, 65, 44, 0.40) 83.79%);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            animation: slide-in-left 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        }
        
        .texto-principal-area {
            color: #FFF;
            font-size: 3.5rem;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        }
        
        .texto-sub {
            color: #FFF;
            font-size: 1.6rem;
            font-style: normal;
            font-weight: lighter;
            line-height: normal;
            animation: slide-in-left 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        }
        
        .content-btn-programas {
            width: 30%;
            animation: slide-in-left 1.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        }
        
        .area-comercial span{
            display: flex;
            justify-content: center;
            align-items: center;
            color: #FFF;
            font-size: 1.2rem;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
        }

    .exito{
        background: linear-gradient(280deg, #00FFA7 20.37%, rgba(20, 255, 173, 0.7) 47.38%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .btn-p{
        width: 100%;
        height: 47px;
        padding: 10px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
        color: #ffff;
        text-align: center;
        font-size: 1.375rem;
        font-style: normal;
        font-weight: 600;
        text-decoration: none;
        line-height: normal;
        border-radius: 8px;
        background: #009763;
        cursor: pointer;
        transition: ease-in-out .2s;
    }

    .btn-p:hover{
        background: #026b46;
        color: white;
    }

    /* formulario */
    #div_pform{
        width:35%;
        padding: 30px;
        float: left;
        display: flex;
        flex-direction: column;
        justify-content: start;
    }
    #div_form {
        width: 100%;
        display: flex;
    }

    #formulario {
        width: 100%;
        padding: 20px;
        border-radius: 15px;
        border-radius: 15px;
        border: 1px solid rgba(0, 151, 99, 0.70);
        background: linear-gradient(158deg, rgba(0, 27, 17, 0.39) 28.07%, rgba(5, 131, 88, 0.39) 93.71%);
        backdrop-filter: blur(18px);
        z-index: 10;
        animation: slide-in-right 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }

    #formulario p{
        padding-top: 10px;
    }
    .sp_texto_destacado {
        color: white;
        font-size: 10px;
    }
    .text{
        color: white;
        width: 100%;
        height: 40px;
        background-color: transparent;
        font-size: 12px;
        padding-top: 15px;
        border: none;
        border-bottom: solid 1px white;
    }
    ::placeholder {
        color: white;
    }
    #prog{
        color: white;
        font-size: 10px;
        margin-top: 10px;
    }
    #programa{
        font-size: 10px;
        padding-top: 10px;
    }
    #programa_chzn{
        display: block !important;
        width: 100% !important;
    }
    #thank{
        color: white;
        margin: 10px;
    }

    #btn_enviar{
        width: 100%;
        border: solid 2px transparent;
        border-radius: 10px;
        padding: 8px;
        color: #ffff;
        text-align: center;
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        border-radius: 7px;
        background: rgb(1, 171, 111);
        cursor: pointer;
        transition: ease-in-out .2s;
    }
        #btn_enviar:hover {
            background: #026b46;
            cursor: pointer;
            color: white;
        }

    #info{
        width: 65%;
        color: white;
        font-size: 10px;
        animation: tracking-in-expand 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    }


    .cont{
        background-color: white;
        padding: 15px;
    }

    #div_programas {
        width: 100%;
        border-radius: 15px;
        background-position: center;
        background-size: cover;
        padding: 3% 5%;
        background-image: url("../imagenes-area-comercial/lab-comercial-1.webp");
    }

    .content-programas{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .programas-comercial{
            width: 55%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .programas-destacados{
                width: 100%;
                height: 80%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 10px 0px;
                gap: 10px;
            }

                .fila-programas{
                    width: 100%;
                    height: 50%;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    padding: 15px;
                    gap: 15px;
                    border-radius: 15px;
                    border: 1px solid #01D68D;
                    background: rgba(119, 243, 200, 0.16);
                    backdrop-filter: blur(18px);
                    animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
                }
                
                    .card-programa{
                        width: 100%;
                        height: auto;
                        display: flex;
                        gap: 10px;
                        padding: 10px 10px 15px 10px;
                        flex-direction: column;
                        justify-content: space-between;
                        align-items: flex-start;
                        align-self: stretch;
                        border-radius: 6px;
                        border: 1px solid #009763;
                        background: #FFF;
                        box-shadow: 0px 0px 15px 0px rgba(4, 201, 202, 0.20);
                    }

                    .content-card-prog{
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        gap: 8px;
                    }

                        .content-card-prog img{
                            width: 100%;
                            border-radius: 5px;
                        }

                        .content-card-prog .program-tittle{
                            color: #004041;
                            font-size: 1.0rem;
                            font-style: normal;
                            font-weight: 600;
                            line-height: 1.1rem; /* 100% */
                        }

                        .content-card-prog p{
                            color: #004041;
                            font-size: 0.8rem;
                            font-style: normal;
                            font-weight: lighter;
                        }

                        .btn-prog{
                            padding: 5px 10px;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center;
                            display: flex;
                            color: #ffff;
                            text-align: center;
                            font-size: 0.9rem;
                            font-style: normal;
                            font-weight: 600;
                            text-decoration: none;
                            line-height: normal;
                            border-radius: 7px;
                            background: #009763;
                            cursor: pointer;
                            transition: ease-in-out .2s;
                        }

                        .btn-prog:hover{
                            background: #026b46;
                            color: white;
                        }

                        .otros-programas {
                            width: 100%;
                            display: flex;
                            flex-direction: column;
                            gap: 10px;
                            overflow: hidden;
                        }

                        .encabezado-otros-programas{
                            color: #FFF;
                        }
                        
                        .swiper-container-otros {
                            width: 100%;
                            height: auto; /* Ajusta según lo necesites */
                            position : relative;
                        }
                    
                        .swiper-slide {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                        }

                        
                        .cont-otros-programas {
                            display: flex;
                            width: 100%;
                            overflow: hidden;
                        }
                                   
                        .card-otros-programas {
                            width: 100%;
                            background: white;
                            display: flex;
                            border-radius: 6px;
                            overflow: hidden;
                            transition: transform 0.3s;
                        }
                        
                        .img-otro-programa {
                            width: 30%;
                            height: 120px;
                        }
                        
                        .img-otro-programa img {
                            width: 100%;
                            height: 100%;
                        }
                        
                        .info-otro-programa {
                            width: 70%;
                            padding: 10px;
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                        }
                        
                        .nombre-otro-programa {
                            color: #06A0A1;
                            font-weight: 600;
                        }
                        
                        .enlace-otro-programas {
                            color: #004041;
                            text-decoration: none;
                        }
                        
                        .enlace-otro-programas:hover {
                            color: #019b9e;
                        }
            
                        .swiper-button-prev, .swiper-button-next {
                            border: solid 2px #004e33;
                            border-radius: 50%;
                            background-color: #e0e4e37a;
                            backdrop-filter: blur(10px);
                            width: 40px;
                            height: 40px;
                        }

                        .swiper-button-prev:after, .swiper-button-next:after{
                            color: #004e33;
                            font-size: 20px;
                            font-weight: bold;
                        }
            
                        .swiper-pagination-bullet-active {
                            background-color: #004e33;
                        }

            .cont-texto-programas-comercial{
                width: 45%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 20px;
                gap: 20px;
            }

                .cont-texto-programas-comercial h2{
                    color: #FFF;
                    text-align: center;
                    font-size: 2.9375rem;
                    font-style: normal;
                    font-weight: 600;
                    line-height: normal;
                    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
                }

                .cont-texto-programas-comercial h2 .exito2{
                    color: #07c784;
                }

                .cont-texto-programas-comercial h4{
                    color: #FFF;
                    font-size: 1.4375rem;
                    font-style: normal;
                    font-weight: 600;
                    line-height: normal;
                    text-align: center;
                    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
                }

                .cont-texto-programas-comercial .description{
                    color: #FFF;
                    text-align: center;
                    font-size: 1.125rem;
                    font-style: normal;
                    font-weight: lighter;
                    line-height: normal;
                    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
                }

                .content-btn-contacto{
                    animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
                }


.info-razones{
    padding: 100px;
    width: 100%;
    background-color: white;
    display: flex;
    gap: 100px;
    flex-direction: column;
    align-items: center;
}

    .razones1{
        width: 100%;
        max-width: 1400px;
        display: flex;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

        .razones-slogan{
            width: 20%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white;
            border-radius: 15px;
            border: 1px solid #009763;
            background: rgba(0, 151, 99, 0.24);
            backdrop-filter: blur(18px);
            padding: 5px;
        }

        .razones-slogan span{
            color: #05412C;
            text-align: center;
            font-size: 1.125rem;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }

        .info-razones h2{
            color: #05412C;
            text-align: center;
            font-size: 3rem;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }

        .inca{
            background: linear-gradient(274deg, #05412C 7.43%, #05ac71 21.95%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 3rem;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
        }

        .box-razones{
            width: 100%;
            height: 400px;
        }

            .line-box{
                width: 100%;
                height: 5px;
                background: linear-gradient(90deg, rgba(11, 52, 170, 0.00) 0%, #009763 50.5%, rgba(11, 52, 170, 0.00) 99%);
            }

            .box-content-razon{
                width: 100%;
                height: 100%;
                display: flex;
                gap: 20px;
            }

            .content-razon{
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: center;
                transform: translateY(-15px);
                gap: 20px;
            }

                .circle-line{
                    width: 25px;
                    height: 25px;
                    border-radius: 50%;
                    background-color: white;
                    border: solid 5px #009763;
                }

                .info-box-razones{
                    width: 100%;
                    height: 100%;
                    display: flex;
                    height: 359px;
                    padding: 40px 30px;
                    flex-direction: column;
                    align-items: center;
                    gap: 20px;
                    align-self: stretch;
                    gap: 10px;
                    border-radius: 15px;
                    border-bottom: 5px solid #009763;
                    background: #ECECEC;
                }

                    .info-box-razones span{
                        color: #02593b;
                        text-align: center;
                        font-size: 3rem;
                        font-style: normal;
                        font-weight: 800;
                        line-height: normal;
                    }

                    .info-box-razones p{
                        color: #02593b;
                        text-align: center;
                        font-size: 1.4375rem;
                        font-style: normal;
                        font-weight: 600;
                        line-height: normal;
                    }

    .razones2{
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

        .content-pq-escogernos{
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 columnas de igual tamaño */
            gap: 20px;
            justify-content: center;
            align-items: center;
        }

            .pq-escogernos-card-1{
                width: 100%;
                height: 300px;
                display: flex;
                height: 267px;
                padding: 30px 20px 30px 0px;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                gap: 28px;
                flex: 1 0 0;
            }

                .pq-escogernos-card-1 .pq-tittle{
                    color: #004e33;
                    font-size: 2.0625rem;
                    font-style: normal;
                    font-weight: 600;
                    line-height: normal;
                }

                .pq-escogernos-card-1 .p{
                    color: #004e33;
                    font-size: 1.5rem;
                    font-style: normal;
                    font-weight: 700;
                    line-height: normal;
                }

                .pq-escogernos-card-1 .razones{
                    background: linear-gradient(271deg, #009763 63.95%, #025f3f 90.97%);
                    background-clip: text;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    font-size: 1.3125rem;
                    font-style: normal;
                    font-weight: 700;
                    line-height: normal;
                }
            
            .pq-escogernos-card{
                width: 100%;
                height: 300px;
                display: flex;
                padding: 35px 30px;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                flex: 1 0 0;
                align-self: stretch;
                border-radius: 15px;
                background: rgba(0, 151, 99, 0.15);
            }

                .pq-escogernos-card .pq-icon{
                    display: flex;
                    width: 65px;
                    height: 61px;
                    padding: 4px 7px;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;
                    border-radius: 20px;
                    background: rgba(0, 151, 99, 0.20);
                }

                .pq-escogernos-card span{
                    color: #05412C;
                    font-size: 1.125rem;
                    font-style: normal;
                    font-weight: 700;
                    line-height: normal;
                }

                .pq-escogernos-card p{
                    color: #05412C;
                    font-size: 1rem;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                }

.call-to-action{
    width: 100%;
    height: 180px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../imagenes-area-comercial/fondo-call-action-comercial.png");
    background-size: cover;
    background-repeat: no repeat;
}

    .content-call-action{
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .img-call-action{
        width: 20%;
        height: 100px;
        background-image: url("../../images/logo-maticulate.png");
        background-size: 80% 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .txt-call-action{
        width: 60%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    
        .txt-call-action span{
            color: #FFF;
            text-align: center;
            font-size: 1.375rem;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
        }

    .btn-call-action{
        width: 20%;
        display: flex;
        justify-content: center;
        align-items: center;
    }


.casos-exito{
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    padding: 80px 0;
}

.cont-casos{
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .cont-casos h3{
        color: #05412C;
        font-size: 2.3125rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .cont-videos{
        width: 100%;
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }

        .caso-exito{
            width: 100%;
            height: 220px;
            border-radius: 10px;
        }

        .caso-exito iframe{
            width: 100%;
            height: 100%;
            border-radius: 8px;
            border: solid 5px #05412C;
        }

.call-to-action-2{
    padding: 20px;
    width: 100%;
    height: 300px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.call-to-action-2 h4{
    color: #05412C;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer{
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

    .contenido-footer{
        width: 100%;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 100px;
        background-color: white;
    }

    .div_logo-footer{
        width: 100%;
    }

    .nav_menu_footer {
        list-style: none;
        margin: 0 !important;
        padding: 0;
        z-index: 100;
    }

    .nav_menu_footer li {
        margin: 20px;
        padding: 5px;
        float: left;
    }

    .nav_menu_footer li a {
        display: block;
        width: 100%;
        text-decoration: none;
        text-align: center;
        font-size: 15px;
        color: #05412C;
        font-weight: 600;
        border: solid 2px transparent;
    }

    .nav_menu_footer li a:hover {
        font-size: 15px;
        border-bottom: solid 2px #FFFFFF;
    }

    .author{
        color: #05412C;
        font-size: 0.9rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    /* Swiper */
    .swiper-container {
        display: none;
    }

    .swiper-container-razones{
        display: none;
    }

    .swiper-container-videos{
        display: none;
    }

/* animacioones*/    
   /*  @keyframes slider {
        0%, 40% { 
            background-image: url("../imagenes-area-comercial/lab-comercial-1.webp");
        }
        40%, 70% { 
            background-image: url("../imagenes-area-comercial/lab-comercial-2.webp");
        }
        70%, 90% { 
            background-image: url("../imagenes-area-comercial/lab-comercial-3.webp");
        }
        90%, 100% { 
            background-image: url("../imagenes-area-comercial/lab-comercial-1.webp");
        }
    } */

    /* header */
    @keyframes scale-in-center {
        0% {
          transform: scale(0);
          opacity: 1;
        }
        100% {
          transform: scale(1);
          opacity: 1;
        }
    }

    /* left */
    @keyframes slide-in-left {
        0% {
          transform: translateX(-1000px);
          opacity: 0;
        }
        100% {
          transform: translateX(0);
          opacity: 1;
        }
    }

    /* rigth */
    @keyframes slide-in-right {
        0% {
          transform: translateX(1000px);
          opacity: 0;
        }
        100% {
          transform: translateX(0);
          opacity: 1;
        }
    }

    /* text */
    @keyframes tracking-in-expand {
        0% {
          letter-spacing: -0.5em;
          opacity: 0;
        }
        40% {
          opacity: 0.6;
        }
        100% {
          opacity: 1;
        }
    }
      

@media(max-width: 1200px) {
    header{
        height: auto;
    }

    .btn-p {
        font-size: 1.1rem;
    }

    .contenido-header{
        width: 90%;
        display: flex;
        align-items: center;
    }

    .div_logo a img{
        width: 80%;
    }

    .nav_menu li{
        margin: 15px;
    }

    .hero{
        padding: 20px;
        height: 120%;
    }

    #info{
        padding: 20px;
        width: 100%;
    }

    .area-comercial {
        width: 200px;
    }

    .texto-principal-area{
        font-size: 2.5rem;
    }

    .exito{
        font-size: 2.5rem;
    }

    .exito2{
        font-size: 2.5rem;
    }
    
    .formación{
        font-size: 2.5rem;
    }

    .texto-sub{
        font-size: 1.5rem;
    }
       
    #div_pform{
        padding: 10px 0 0 0;
    }

    #div_programas{
        height: 120%;
    }

    .card-otros-programas{
        height: 90px;
    }

    .img-otro-programa{
        height: auto;
    }

    .otros-programa img{
        height: auto;
    }

    .cont-texto-programas-comercial h2{
        font-size: 2.1rem;
        text-align: center;
    }

    .cont-texto-programas-comercial h4{
        font-size: 1.2rem;
        text-align: center;
    }

    .info-razones h2{
        font-size: 2.5rem;
    }

    .inca{
        font-size: 2.5rem;
    }

    .razones1{
        gap: 10px;
    }

    .box-razones{
        height: 300px;
    }

    .info-box-razones{
        height: 100%;
    }

    .content-razon{
        height: 100%;
    }

    .info-box-razones span{
        font-size: 2.0rem;
    }

    .info-box-razones p{
        font-size: 1.0rem;
    }

    #footer nav{
        width: 100%;
    }
}

@media(max-width: 1000px) {
    .contenido-header{
        width: 100%;
        border-radius: 0px;
        border: none;
        background: rgba(15, 34, 111, 0);
    }

    .nav_menu{
        display: none;
    }

    .content-card-prog .program-tittle{
        font-size: 0.8rem;
    }

    .content-card-prog p{
        font-size: 0.6rem;
    }

    #div_programas{
        height: auto;
    }

    .fila-programas{
        padding: 10px;
        gap: 8px;
        border-radius: 10px;
    }

    .programas-destacados{
        height: auto;
    }

    .card-otros-programas{
        height: 70px;
    }

    .info-otro-programa .nombre-otro-programa{
        font-size: 0.8rem;
        line-height: 0.8rem;
    }

    .enlace-otro-programas{
        font-size: 0.6rem;;
    }

    .cont-texto-programas-comercial h2{
        font-size: 1.8rem;
    }

    .cont-texto-programas-comercial h4{
        font-size: 0.9rem;
    }

    .cont-texto-programas-comercial .description{
        font-size: 0.8rem;
    }

    .btn-prog{
        font-size: 0.7rem;
    }

    .razones-slogan{
        width: auto;
    }

    .info-razones h2 {
        font-size: 1.8rem;
    }

    .inca{
        font-size: 1.8rem;
    }

    .info-box-razones{
        padding: 20px;
    }

    .pq-escogernos-card p{
        font-size: 0.8rem;
    }

    .pq-escogernos-card span{
        font-size: 1rem;
    }

    .pq-escogernos-card .pq-icon{
        width: 36px;
        height: 36px;
    }

    .call-to-action-2 h4{
        font-size: 1.8rem;
    }
}

@media(max-width: 768px) {
    .hero{
        height: auto;
    }

    #datos{
        flex-direction: column;
        gap: 20px;
    }

    #anuncio{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 120px;
    }

    .texto-principal-area{
        text-align: center;
    }

    #div_pform{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #div_form , #info{
        width: 60%;
    }

    .content-programas{
        flex-direction: column-reverse;
    }

    .cont-texto-programas-comercial{
        width: 80%;
        height: auto;
    }

    .programas-comercial{
        width: 90%;
        height: auto;
    }

    .box-razones {
        height: 1000px;
        display: flex;
    }

    .content-razon{
        flex-direction: row;
        transform: translateY(0px);
        transform: translateX(-15px);
    }

    .box-content-razon{
        flex-direction: column;
    }

    .line-box{
        width: 5px;
        height: 1000px;
        background: linear-gradient(96deg, rgba(0, 0, 0, 0.00) 0%, #004e33 50.5%, rgba(102, 102, 102, 0.00) 99%);
    }

    .cont-videos{
        padding: 50px;
    }

    .call-to-action-2{
        height: auto;
    }
    
    .nav_menu_footer{
        display: flex;
        flex-direction: column;
        padding: 30px 0;
    }

    .nav_menu_footer li{
        margin: 5px;
    }

    .fila-programas{
        display: none;
    }

      .swiper-slide {
        width: 80%;
        height: auto;
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .card-programa{
        width: 70%;
        align-items: center
      }

      .otros-programas{
        width: 70%;;
      }

      .cont-otros-programas{
        flex-direction: column;
      }

      .swiper-container {
        width: 90%;
        height: 100%;
        text-align: center;
        overflow: hidden;
        height: 100%;
        display: block;
        border: solid 1px rgba(255, 255, 255, 0.459);
        padding: 30px 0;
        background: #004e339d;
        border-radius: 10px;
        backdrop-filter: blur(18px);
        animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
      }
    
    .swiper-pagination-bullet{
      width: 8px;
      height: 8px;
      opacity: 0.8;
      background: rgb(171, 171, 171);
    }

    .swiper-button-prev, .swiper-button-next{
        border: solid 1px rgba(5, 115, 67, 0.411);
        border-radius: 50%;
        width: 30px;
        height: 30px;
    }

    .swiper-button-prev:after, .swiper-button-next:after{
        color: white;
        font-size: 12px;
    }

    .swiper-button-prev-razones, .swiper-button-next-razones{
        background: #00413291 ;
    }

    .content-pq-escogernos{
        display: none;
    }

    .swiper-container-razones{
        width: 90%;
        height: 100%;
        text-align: center;
        overflow: hidden;
        height: 100%;
        display: block;
        border: solid 1px rgba(255, 255, 255, 0.459);
        padding: 30px 0;
        background: rgba(255, 255, 255, 0.30);
        border-radius: 10px;
        backdrop-filter: blur(18px);
        animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }

    .info-razones{
        padding: 100px 0;
    }

    .razones1{
        width: 60%;
    }

    .pq-escogernos-card-1{
        padding: 0 20%;
        align-items: center;
    }

    .pq-escogernos-card{
        padding: 0 20%;
        align-items: center;
        justify-content: center;
    }

    .swiper-pagination-razones .swiper-pagination-bullet-active{
        background-color: #009763;
    }

    .swiper-container-videos{
        display: block;
        width: 60%;
        overflow: hidden;
    }

    .cont-videos{
        display: none;
        
    }

    .contenido-footer{
        height: 600px;
    }

    .content-btn-programas{
        width: 60%;
    }

    .contenido-header{
        justify-content: center;
        align-items: center;
        background-color: #006d47c2;
    }

    .contenido-header nav{
        display: none;
    }

    .content-call-action{
        flex-direction: column;
    }

    .call-to-action{
        height: auto;
        padding: 30px 0;
    }

    .img-call-action{
        width: 70%;
    }

    .txt-call-action span{
        font-size: 1.2rem;
        padding:  30px 0;
    }

    .btn-call-action{
        width: 100%;
    }

   .div_logo {
       width: 100%;
   }

   .div_logo a img{
        width: 100%;
   }

   .card-otros-programas{
    width: 80%;
   }

}

@media(max-width: 480px) {
    .texto-principal-area{
        font-size: 2rem;
    }

    .texto-sub{
        font-size: 1rem;
        text-align: center;
    }

    .texto-principal-area .exito{
        font-size: 2rem;
    }



    .formación{
        font-size: 2rem;
    }

    .btn-p{
        font-size: 1rem;
        padding: 5px 15px;
    }

    #div_form, #info{
        width: 100%;
    }

    #div_programas{
        padding: 0;
    }

    .cont-texto-programas-comercial h2{
        font-size: 1.5rem;
    }

    .cont-texto-programas-comercial{
        width: 100%;
    }

    .programas-comercial{
        width: 100%;
        padding: 30px 0;
    }

    .otros-programas{
        width: 100%;
        padding: 0 20px;
    }

    .razones1{
        width: 100%;
    }

    .swiper-container-videos{
        width: 100%;
    }

    .call-to-action-2{
        text-align: center;
    }

    .contenido-footer{
        padding: 80px 0;
        height: auto;
    }

    .img-otro-programa{
        width: 30%;
    }

    .card-otros-programas{
        justify-content: left;
    }

    .info-otro-programa{
        width: 70%;
    }
}

