* {
    margin: 0px;
    padding: 0px;
    box-sizing: content-box;
}

:root {
    --colorTextos: #7e7e7e;
    --colorBotones: #ff7f50;
    --colorFondo: #ff6347;
    --paddingSecciones: 60px 0px;
    --marginElementos: 40 px;
}

body {
    font-family: 'Lato', sans-serif;
}

.contenedor {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: var(--paddingSecciones);
}


/*      Menu    */

.menu-navegacion {
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    display: block;
    height: 100%;
}

.enlaces li {
    list-style: none;
    display: inline-block;
}

.enlaces a {
    color: var(--colorFondo);
    text-decoration: none;
    margin-left: 15px;
}

.enlaces a:hover {
    text-decoration: underline;
}


/*       Hero      */

.hero {
    height: 500px;
    background-image: url("../Imagenes/pexels-vlada-karpovich-4050415\ \(1\).jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.contenedor-textos {
    padding: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
}

.hero p {
    font-weight: 300;
    font-size: 25px;
    margin: 15px 0;
}

.boton {
    width: 150px;
    display: block;
    margin: 0 auto;
    padding: 15px 0;
    background: var(--colorBotones);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

.boton:hover {
    background: #ff6347;
}


/*    Main   */

.titulo-seccion {
    text-align: center;
    font-size: 35px;
    color: var(--colorFondo);
}

.copy {
    text-align: center;
    color: var(--colorTextos);
    margin: 20px 0;
}

.beneficios {
    padding-top: var(--marginElementos) 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.beneficio {
    font-size: 20px;
    width: 10em;
    height: 10em;
    background-image: url("../Imagenes/chicaBella2.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.projects {
    background: #f2f2f2;
}

.contenedor-imagenes {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.contenedor-imagenes img {
    display: block;
    object-fit: cover;
    width: 30%;
    height: 220px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--marginElementos);
}

.people {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.person {
    font-size: 22px;
    text-align: center;
    font-weight: 300;
    margin-top: 5px;
}


/* footer  */

footer {
    background-image: url("../Imagenes/pexels-marta-branco-1194713.jpg");
    background-position: center;
    background-size: cover;
    width: 100%;
}

.footer .titulo-seccion,
.footer .copy {
    color: #fff;
}

.redes-sociales {
    padding-top: var(--marginElementos);
    width: 80%;
    display: flex;
    margin: auto;
    justify-content: space-evenly;
}

.redes-sociales i {
    font-size: 60px;
    color: #ff7f50;
}

@media screen and (max-width: 800px) {
    .menu-navegacion {
        flex-direction: column;
        height: 120px;
        justify-content: space-evenly;
    }
    .hero h1 {
        font-size: 38px;
    }
    .beneficio {
        margin-bottom: var(--marginElementos);
    }
    .contenedor-imagenes img {
        width: 90%;
    }
    .redes-sociales {
        flex-direction: column;
        align-items: center;
    }
    .redes-sociales i {
        margin-bottom: 20px;
    }
}