/* Ajustes titulos */
.titulo-principal{
    font-size: 3.2vw;
    font-weight: bold;
}

.subtitulo-principal{
    font-weight: 500;
    margin-top: 10px;
}

@media screen and (max-width: 767px){
    .titulo-principal{
        margin-top: 10px;
        font-size: 5.3vw !important;
    }
    
    .subtitulo-principal{
        font-size: 4.6vw !important;
        margin-top: 5px !important;
    }   
}

/*  */


/* Estilos temas - subtemas */

.bg-fondo-tema{
    background-color: #E3F4D9;
    border-radius: 5px;
    display: flex;
    justify-content: center;
}

.titulo-tema{
    color: #2C3156;
    font-weight: bold;
}

.subtema-bg{
    display: flex;
    justify-content: flex-start;
    gap: 1em;
}

.borde-subtema{
    border: 8px solid #E3F4D9;
    border-radius: 6px;
}

.contenedor-verde-claro {
    background-color: #EFFAF7;
    width: 100%;
    height: 400px;
    border-radius: 6px;
}

.btn-azul-degraded{
    background: linear-gradient(90deg, #393E41 20%, #393E41 66%) ;
    color: #fff;
    /* padding: 0.6em 1.5em; */
    border-radius: 4px;
    /* width: 250px; */
    transition: .6s ease-in-out all;
}

.btn-azul-degraded b{
    color: #DBD56E;
}

.btn-azul-degraded:hover{
    color: #fff;
    background: linear-gradient(90deg, rgba(45, 147, 173, 1) 20%, rgba(136, 171, 117, 1) 66%);
}

@media screen and (max-width: 767px){
    .botones-degraded .btn{
        font-size: 1.2rem !important; 
    }

    .btn-azul-degraded{
        width: 220px;
    }

    .tema-1 .bg-fondo-tema{
        margin-top: 0.5rem !important;
    }
}

.bg-foro{
    background-color: #EDF7F9;
    border-radius: 6px;
}


/* Colapsador enfoque pedagogico */

.enfoque-pedagogico .btn:focus {
    -webkit-box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%) !important;
    box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%) !important;
}

.enfoque-pedagogico .btn:hover {
    -webkit-box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%) !important;
    box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%) !important;
}

.enfoque-pedagogico .btn-colapsar {
    background-color: #FFF0E6;
    color: #6C6CFF;
    border-bottom: 2px solid #2C3156;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0 0;
    padding: 0.84rem;
    text-transform: none;
    width: 100%;
}

.enfoque-pedagogico .btn-expandido {
    border-bottom: 2px solid #2C3156 !important;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0 0;
    padding: 0.84rem;
    text-transform: none;
    width: 100%;
}

.enfoque-pedagogico .btn-colapsar-layout {
    display: grid;
    /* grid-template-columns: minmax(1rem, 3rem) minmax(12.5rem, 1fr) 2rem; */
    grid-template-columns: 0rem 1fr 3rem;
    grid-template-rows: 1fr;
    gap: 0px 0em;
    grid-template-areas: ". . .";
    justify-content: center;
    align-content: center;
    justify-items: flex-start;
    align-items: center;
}

.enfoque-pedagogico .btn-colapsar-layout .linea {
    align-self: center;
}

.enfoque-pedagogico .btn-colapsar-icono {
    align-self: center;
    align-items: center;
    color: #393E41;
    border-radius: 50%;
    display: inline-flex;
    height: 2rem;
    justify-content: center;
    width: 2rem;
}

.enfoque-pedagogico .expandido .btn-colapsar-icono {
    color: #2D93AD;
}

.enfoque-pedagogico .btn-colapsar-texto {
    padding: 0 0.5rem;
    text-align: left;
}

.enfoque-pedagogico .colapsar-contenido {
    background: #FEFFF8;
    font-size: 1rem;
    overflow: auto;
    padding: 1rem 2rem;
}

.enfoque-pedagogico .expandido .btn-colapsar {
    border-bottom: 2px solid #2C3156 !important;
}

.enfoque-pedagogico .btn-colapsar-texto {
    color: #393E41 !important;
}

.enfoque-pedagogico .expandido .btn-colapsar-texto {
    color: #2D93AD !important;
}

/*  */



/* Estilos swiper - tarjetas deslizables */

.swiper {
    width: 90%;
    height: 600px;
}

@media screen and (max-width: 1340px) {
    .swiper {
        width: 80%;
        height: 600px;
    }
}

@media screen and (max-width: 1199px) {
    .swiper {
        width: 80%;
        height: 720px;
    }
}

@media screen and (max-width: 991px) {
    .swiper {
        width: 79%;
        height: 950px;
    }
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.25em;
    font-weight: normal;
    color: #000;
}

.swiper-slide:nth-child(1n) {
    background-color: #E4F2EF;
}

.swiper-slide:nth-child(2n) {
    background-color: #FFE8D2;
}

.swiper-slide:nth-child(3n) {
    background-color: #DEF3FF;
}

.text-grey{
    color: #393E41;
    font-weight: 700;
}


/*  */


.gap-roles{
    gap: 5em;
}

@media screen and (max-width: 991px) {
    
    .estudiante{
        width: 45%;
    }

    .facilitador{
        width: 45%;
    }

    .gap-roles{
        gap: 3em;
    }
}


.escenarios .btn-azul-degraded{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;

    height: 121px;
}

.escenario-1,
.escenario-2,
.escenario-3,
.escenario-4,
.escenario-5{
    width: 40%;
}

@media screen and (max-width: 1199px) {
    .escenarios .btn-azul-degraded{
        height: 180px;
    }
}



/* Responsivo */

.bg-titulo-enfoque{
    background-color: #FFF0E6;
    color: #2D93AD;
    font-weight: bold;
}

.bg-texto-enfoque{
    background-color: #FEFFF8;
    color: #000;
}

.ambientes-aprendizaje{
    border-radius: 18px;
}

.ambientes-aprendizaje:nth-child(1){
    background-color: #E4F2EF;
}

.ambientes-aprendizaje:nth-child(2){
    background-color: #FFE8D2;
}

.ambientes-aprendizaje:nth-child(3){
    background-color: #DEF3FF;
}

/*  */


/* Estilos para botón ir arriba para tema 3 */

.ancla {
    background-color: #393E41 ;
    background-image: -moz-linear-gradient(center top, #222222, #111111);
    border: 1px solid #333333;
    border-radius: 4px;
    bottom: 20px;
    box-shadow: 0 0 4px rgb(0 0 0 / 10%);
    cursor: pointer;
    display: none;
    height: 30px;
    opacity: 0.5;
    overflow: hidden;
    position: fixed;
    right: 20px;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    width: 36px;
    z-index: 1000;
    color: #FFF;
    font-size: 20px;
    text-align: center;
}

.ancla:hover {
    box-shadow: 0 0 6px rgb(0 0 0 / 25%);
    opacity: 1;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

/*  */

.swiper-slide{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}