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

body{
    font-family: 'Inter';
}

/* Icono flotante Whatsapp*/

.float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.float:hover {
	text-decoration: none;
	color: #25d366;
    background-color:#fff;
}

.my-float{
	margin-top:16px;
}

.contenedor{
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.titulo{
    color: #c40000;
    font-size: 45px;
    text-align: center;
    margin-bottom: 60px;
}

/* About us */

main .introduccion{
    padding: 30px 0 60px 0;
}

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

.imagen-about-us{
    width: 40%;
}

.introduccion .contenido-textos{
    width: 100%;
}

.contenido-textos p{
    text-align: justify
}

/*footer*/

footer{
    background: #414141;
    padding: 60px 0 30px 0;
    margin: auto;
    overflow: hidden;
}

.contenedor-footer{
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    margin: center;
    padding-bottom: 50px;
    border-bottom: 1px solid #ccc;
}

.contet-foo{
    text-align: center;
}

.contet-foo h5{
    color: #fff;
    border-bottom: 3px solid rgb(0, 0, 0);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.contet-foo p{
    color: #ccc;
}

/*Adaptacion a dispositivos moviles*/

@media  screen and (max-width: 900px) {
    header{
        background-position: center;
    }
    .contenedor-sobre-nosotros{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .sobre-nosotros .contenido-textos{
        width: 90%;
    }
    .imagen-about-us{
        width: 90%;
    }

    /*Galeria*/
    
    .imagen-port{
        width: 44%;
    }
}

@media screen and (max-width: 500px) {
    nav{
        text-align: center;
        padding: 30px 0 0 0;
    }
    nav > a{
        margin-right: 5px;
    }

    .textos-header h1{
        font-size: 35px;
    }

    .textos-header h2{
        font-size: 20px;
    }

    /*ABOUT AS*/

    .imagen-about-us{
        margin-bottom: 60px;
        width: 99%;
    }

    .sobre-nosotros .contenido-textos{
       width: 95%; 
    }

    /*Galeria*/

    .imagen-port{
        width: 95%;
    }

    /*Footer*/

    .contenedor-footer{
        flex-direction: column;
        border: none;
    }

    .contenedor-foo{
        margin-bottom: 20px;
        text-align: center;
    }

    .content-foo h4{
        border: none;
    }

    .content-foo p{
        color: #ccc;
        border-bottom: 1px solid #f2f2f2;
        padding-bottom: 20px;
    }
}