#bachTitulo, #bachDemoSolu{
    background-color: white;
    width: 100%;
    padding: 2%;
}
#bachTitulo h2, #bachDemoSolu h2{
    font-size: 3em;
    color: red;
    text-align: center;
    margin: 10px;
}
#bachTitulo p, #bachDemoSolu p{
    font-size: 1.8em;
    text-align: center;
}
/* Carreras */
#bachCarreras{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: white;
    width: 100%;
    padding: 2%;
}
#bachCarreras article{    
    width: 50%;
    padding: 2%;
    text-align: center;    
}
#bachCarreras article img{
    box-shadow: 0 0 3px #000;
    border-radius: 15px;
    width: 100%;
}
@media screen and (max-width: 600px) {
    #bachCarreras article{    
        width: 100%;
    }
}
/* Demostración portada */
#bachDemo{
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
    align-items: center;
    background: url(../img/bach/Bachillerato-Demostracion-Fondo.jpg) no-repeat;
    background-size: cover;    
    width: 100%;
    padding: 2%;
}
#bachDemo article{
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 2%;    
}
#bachDemo article h2{
    color: red;
    font-size: 3em;
    margin: 10px;
}
#bachDemo article p{
    color: white;
    font-size: 1.4em;
    margin: 10px;
}
#bachDemo article a{
    background-color: #000;
    font-size: 2em;
    color: white;
    padding: 10px;
    border-radius: 30px;
}
#bachDemo article a:hover{
    background-color: rgb(1, 16, 68);
    box-shadow: 0 0 3px #010830;
    color: yellow;
}
#bachDemo article img{
    box-shadow: 0 0 3px #000;
    border-radius: 15px;
    width: 60%;
    margin: auto;
}
@media screen and (max-width: 750px) {
    #bachDemo article{    
        width: 100%;
    }
}
/* Ofrecemos */
#bachOfrece{
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
    align-items: center;
    background-color: white;    
    width: 100%;
    padding: 2%;
}
#bachOfrece article{
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 2%;    
}
#bachOfrece article h2{
    color: red;
    font-size: 3em;
    margin: 10px;
}
#bachOfrece article img{
    box-shadow: 0 0 3px #000;
    border-radius: 15px;
    width: 60%;
    margin: auto;
}
#bachOfrece article p{
    width: 46%;
    margin: 2%;
    font-size: 1.8em;
}
#bachOfrece article p strong{
    color: #010830;
}
@media screen and (max-width: 1070px) {
    #bachOfrece article p{
        width: 98%;
    }
}
@media screen and (max-width: 900px) {
    #bachOfrece article{
        width: 100%;
    }
}
/* Demostración de lo aprendido (sección completa) */
.bachFotoDemo{
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
    align-items: center;
    background-color: white;    
    width: 100%;
    padding: 2%;
}
.bachFotoDemo img{
    width: 21%;
    margin: 2%;
    box-shadow: 0 0 3px #000;
    border-radius: 15px;
    transition: transform 1s ease-in-out;
}
.bachFotoDemo img:hover{
    transform: scale(1.4);
}
#bachDemoVideo{
    display: flex;
    flex-wrap: wrap;    
    justify-content: center;
    align-items: center;
    background-color: white;    
    width: 100%;
    padding: 2%;
}
#bachDemoVideo video{
    width: 46%;
    margin: 2%;
    box-shadow: 0 0 3px #000;
    border-radius: 15px;
}
@media screen and (max-width: 900px) {
    .bachFotoDemo img{
        width: 46%;
    }
}
@media screen and (max-width: 600px) {
    .bachFotoDemo img{
        width: 96%;
    }
    #bachDemoVideo video{
        width: 96%;
    }
}