@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@300;400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    font-family: "Saira Semi Condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
}

main{
    width: 100%;
}

img {
    max-width: 320px;
    border-radius: 6px;
    box-shadow: 6px 6px 6px 0 rgba(6, 6, 6, 0.6);
}

/*sobre Daniel*/
.contenido{
    width: 100%;
    padding: 20px 0 20px 0;
    margin: 0 auto;
    background-image: url("../img/fondo.jpg");
}

.contenido_foto{
    position: relative;
    margin: 0 auto;
    line-height: 0;
    padding: 60px 30px;
}

.contenido_texto{
    position: relative;
    color: #fff;
    padding: 40px 20px;
}

.contenido_texto p{
    padding-bottom: 20px;
}

.contenido_texto h1{
    font-size: 42px;
    font-weight: 300;
    padding-bottom: 10px;
    color: #d7f7e7;
}

.seccion{
    width: 80%;
    margin: 0 auto;
    justify-content: center;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

section{
    flex: 60%;
    padding: 20px;
}

/*contacto*/
.contacto{
    width: 100%;
    background: linear-gradient(130deg,rgba(27, 42, 56, 1) 0%, rgba(51, 76, 99, 1) 100%);
    padding-top: 40px;
}

/*descargas*/

.content_descargas{
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.content_descargas .descargas{
    border: 1px solid #28445e;
    border-radius: 40px;
    padding: 15px 30px 15px 30px;
    color: #d7f7e7;
    background-color: #1a2d3f;
    box-shadow: 3px 3px 3px 0 rgba(6, 6, 6, 0.6);
}

.content_descargas .descargas:hover{
    border: 1px solid #375b7c;
    color: #fff;
    background: linear-gradient(130deg,rgba(27, 42, 56, 1) 0%, rgba(51, 76, 99, 1) 100%);
}

.contenido_contacto{
    color: #fff;
    text-align: center;
    font-size: 24px;
    padding: 20px;
}

.contenido_contacto h3{
    font-weight: 300;
    padding: 10px;
}

.contenido_contacto .mail{
    color: #A7E7C2;
}

.contenido_contacto .mail:hover{
    color: #fff;
}

/* redes */
footer{
    background: #1a2d3f;
    padding: 12px;
    display: flex;
    justify-content: center;
}

.title_footer{
    color: #fff;
    text-align: center;
}

.title_redes{
    background-color: #000;
    padding-top: 20px;
}

.redes{
    gap: 20px;
    padding: 16px;
}

.redes a{
    color: #A7E7C2;
}

.redes a:hover{
    color: #fff;
}

@media screen and (max-width: 768px){
    nav, .row{
        flex-direction: column;
    }
    .portada img{
        width: 100%;
    }
    .seccion{
        width: 100%;
    }
    .contenido_texto_mapa{
        padding: 0 0 20px 0;
    }
    aside img{
        padding-bottom: 20px;
    }
    .contenido_col1{
        padding-bottom: 20px;
    }
}