@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --white: #f9f9f9;
    --blue: #003399;
    --yellow-light:#FFC436;
    --black: #848688;
    --black1: #727376;
    --grey: #0b0b0b;
    --blue2: #001E84;
    --black2: #E6E7E8;
    --black3: #D2D3D5;
    
}

/* Footer */

.programas_total{
  width: 100%;
  font-family: "Montserrat" "sans-serif";
}

.cabecera_programas{
    width: 100%;
    padding: 20px 0px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.cabecera_programas h1{
    text-align: center;
    margin: auto;
    font-size: 2rem;
    font-weight: 600;
    color:var(--black1);
    font-family: "Montserrat";
}

.cabecera_programas span{
    text-align: center;
    margin: auto;
    font-size: 2rem;
    font-weight: 600;
    color:var(--blue2);
    font-family: "Montserrat";
}

.programas{
    width: 100%;
    margin-bottom: 3rem;
}

.cabecera_subtitulo {
    width: 100%;
    background:var(--blue2);

}

.cabecera_subtitulo h2{
    width: 100%;
    font-size: 2rem;
    font-weight: 600;
    color:#fff;
    padding: 1rem 1rem;
    font-family: "Montserrat";
}

.programas .columnas_dos{
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.programas .columnas_dos .programas_items{
    width: 60%;
    margin-top: 2rem;
}



.programas .columnas_dos .programas_items p{
    background:var(--black2);
    color: var(--blue2);
    padding: 1rem 1rem;
    font-family: "Montserrat";
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.programas .columnas_dos .programas_items .btn_eventos{
    display: flex;
    width:100%;
}

.programas .columnas_dos .programas_items .btn_eventos a{
        width:160px;
        height: 50px;
        background:var(--blue2);
        padding: 15px 10px;
        color:#fff;
        border-radius: 10px;
        text-align: center;
}
    

.programas .columnas_dos .programas_items .btn_eventos .click{
    background: #fff;
    color: var(--black1);
}



.programas .columnas_dos .fotos_programas{
    width: 100%;
    text-align: center;
}

.programas .columnas_dos .fotos_programas .ft_main{
    margin: auto;
    padding:3rem 3rem;
}

.programas .columnas_dos .fotos_programas .ft_main img{
    width: 450px;
    border:8px var(--black3) solid;
    box-shadow: 11px 10px 17px -6px rgba(0,0,0,0.3);
}


@media screen and (max-width:400px){

    .columnas_dos{
        display:flex;
        flex-wrap: wrap;
        justify-content: center;

    }

    .cabecera_programas h1{
        font-size: 1.5rem;
        margin-right: 20px;
    }

    .cabecera_programas span{
        font-weight: 700;
        font-family: "montserrat";
    }

    .cabecera_subtitulo{
        width: 95%;
        margin-left: 10px;
    }
    .cabecera_subtitulo h2{
        margin-bottom: 10px;
        font-size: 1.2rem;
        margin-left: 15px;
    }

    .programas .columnas_dos .programas_items p{
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.5rem;
    }

    .programas .columnas_dos .programas_items{
        width: 100%;
        margin-top: 2rem;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .programas .columnas_dos .programas_items .btn_eventos{
        display: flex;
        width:100%;
    }
    
    .programas .columnas_dos .programas_items .btn_eventos a{
        width:160px;
    }
    
    .programas .columnas_dos .fotos_programas .ft_main{
        width: 100%;
        padding: 1rem 0rem;
    } 

    .programas .columnas_dos .fotos_programas .ft_main img{
        width: 350px;
        box-shadow: none;
        margin-left: 5px;
    }

}

