/* Globales............................................................................................... */
html{
    font-size: 62.5%;
    box-sizing: border-box; /* Hack para box model */
    scroll-snap-type: y mandatory;
}
*, *:before, *:after{
    box-sizing: inherit;
}
body{
    font-size: 16px; /*1 Rem = 10px*/
    font-family: "Lora", serif;
    min-height: 100vh;
    background: linear-gradient(
    to bottom,
    #4F647F 0%,
    #6F8FB0 35%,
    #D8C38F 75%,
    #C47A5A 100%
);
}
/* Tipografia................................................................................... */
h1{
    font-size: 3.8rem;
    color: #F2E6CF;
    padding: 0 4rem;
    text-shadow: 0 2px 6px rgba(0,0,0,.9);
}
h2{
    font-size: 2.8rem;
    color: black;
    padding-bottom: 2rem;
}
/* color: #2C3E50; */
h1, h2, h3{
    text-align: center;
    font-family: "Playfair Display", serif;
    line-height: 1.3;
}
p{
    font-size: 2rem;
    font-family: "Lora", serif;
    color: #2C3E50;
    text-align: center;
    line-height: 1.3;
}
.sombra{
    box-shadow: 0px 5px 15px 0px rgba(48,48,48,0.64);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(48,48,48,0.64);
    -moz-box-shadow: 0px 5px 15px 0px rgba(48,48,48,0.64);
    background-color: var(--blanco);
    padding: 4rem 6rem;
    border-radius: 1rem;
    margin: 2rem;
}
/* header..................................................................................... */
header{
    background-image: url(/img/Header.jpg);
    height: 55rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.logo_header{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
}
.logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo img{
    max-width: 30rem;
    min-width: 30rem;
}
.notas{
    display: flex;
    align-items: center;
    justify-content: center;
}
.notas_imagen{
    width: 85%;
    padding: 3rem 0;
}
/* Main............................................................................................. */
.contenedor_titulo{
    padding-bottom: 3rem;
}
.contenedor{
    width: 90%;
    margin: 3rem auto;
    
    background: #EAD7B0;
}
@media (min-width: 768px) {
    .contenedor{
        max-width: 140rem;
    }
}
/* .contenido_imagen{
    display: ;
} */
.imagen_contenido{
    max-width: 45%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.maestros{
    display: flex;
}
.cita_nombre, .cita_academia{
    text-align: left;
    font-weight: bold;
}

/* footer.......................................................................................... */
.footer{
    background-image: url(/img/opacidad\ 2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

    box-shadow: 0px 5px 15px 0px rgba(48,48,48,0.64);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(48,48,48,0.64);
    -moz-box-shadow: 0px 5px 15px 0px rgba(48,48,48,0.64);
    padding: 4rem 4rem;
    border-radius: 1rem;
    margin: 2rem;
}
.footer_titulo{
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,.9);
}
.redes-sociales{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.redes{
    border-radius: 2rem;
}
.redes svg{
    display: block;
    margin: 2rem auto;
}
@media (min-width: 768px) {
    .redes-sociales{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .redes{
        height: 15rem;
        width: 20rem;
        border-radius: 2rem;
    }
}