@import url(header.css);
@import url(letras.css);
@import url(fontello.css);
@import url(menu.css);


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}


body {
    background-color: #F4F1DF;
    position: relative;
}


.banner-negro {
    position:absolute;
    top:0;
    background-color: #282426;
    height: 400px;
    width: 100%;
    z-index: -10;
}

.primera-seccion {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.primera-seccion article{
    margin: 15px 0;
}

.primera-seccion .titulos {
    text-align: center;
    width: 100%;
}

.primera-seccion .media {
    width: 80%;
    max-width: 800px;
}

.primera-seccion .media video{
    width: 100%;
}


/* seccion 2 */

.segunda-seccion {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items:center;
    justify-content: center;
    width: 100%;
    padding: 10px 45px;
    margin: 40px 0;
}

.segunda-seccion article {
    margin: 15px;
}

.segunda-seccion .media img {
    max-height: 500px;
}

.segunda-seccion .cuadro {
    max-width: 700px;
    border: solid 2px #282426;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
    height: 500px;
    border-left: 20px solid #282426;
    border-right: 20px solid #282426;
}

.segunda-seccion .cuadro a, .segunda-seccion .cuadro p{
    margin: 15px 0;
}

.boton1{
    background-color: #282426;
    color: #F4F1DF;
    padding: 10px 15px;
    width: 160px;
    text-align: center;
    border: 1px solid #282426;
    transition: .2s ease;
}

.boton1:hover {
    background-color: #F4F1DF;
    color: #282426;
}

.inversa {
    flex-direction: row-reverse;
}

@media screen and (max-width: 950px){
    .primera-seccion{
        margin-top: 30px;
    }
}

@media screen and (max-width: 600px){
    .segunda-seccion article {
        margin: 3px;
    }
    .segunda-seccion .cuadro {
        width: 99%;
        padding: 20px 30px;
        height: 500px;
    }
    .segunda-seccion .media img {
        width: 100%;
        max-height: 10000px;
    }
}

@media screen and (max-width: 400px){
    .segunda-seccion .cuadro {
        padding: 20px 18px;
        height: 550px;
        width: 100%;
    }
    .segunda-seccion .media img {
        width: 99%;
        min-height: 425px;
    }
    .primera-seccion .media {
        width: 100%;
        width: 340px;
    }
    .segunda-seccion {
        padding: 10px;
    }
    .boton1{
        padding: 10px 15px;
        width: 180px;
    }
}


/* botones */

.tercera-seccion {
    margin: 40px ;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.recuadros{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
}

.recuadros .boton2 {
    background-color: #282426;
    color: #F4F1DF;
    padding: 15px 20px;
    width: 300px;
    border: solid 1px #282426;
    margin: 15px;
    height: 120px;
    text-align: center;
}

.tercera-seccion .bio .titulo2 {
    font-size: 25px;
    text-align: center;
    max-width: 800px;
}

@media screen and (max-width: 950px){
    .recuadros .boton2{
        width: 280px;
    }
}
@media screen and (max-width: 600px){
    .recuadros .boton2{
        width: 90%;
    }
}

/* FINAL */

.final {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.final article {
    width: 80%;
    max-width: 800px;
}

.final article video{
    width: 100%;
    margin-bottom: 60px;
}

.final a {
    color:#282426;
    font-size: 30px;
}


/* FOOTER */

footer {
    width: 100%;
    margin: 100px 0 25px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

footer article{
    width: 30%;
    text-align: center;
}


footer .redes a{
    font-size: 30px;
    color: #282426;
    transition: .2s ease;
}

footer  a:hover {
    color:rgb(108,116,71)
}

@media screen and (max-width:400px){
    footer {
        width: 100%;
        margin: 100px 0 25px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
    }
}

