:root {
    --azul-oscuro: #202531;
    --gris-oscuro: #505E75;
    --naranja: #EB5C21;
    --gris-claro: #D7D9D8;
    --blanco: #FFFFFF;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fuente/avenir-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fuente/avenir-black.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fuente/avenir-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;


}

body {

    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-style: normal;

}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    font-family: 'Avenir';
}

h1 {
    font-size: 4rem;
}

a {
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: initial;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

p {
    font-weight: 300;
    margin: 0;
    padding: 0;
}


.whatsapp-cuadrado {
    position: fixed;
    bottom: 0;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color:#25D366  ;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.whatsapp-cuadrado:hover {
    transform: translateY(-50%) scale(1.1);

}

.whatsapp-cuadrado img {
    width: 30px;
    height: 30px;
}







@media only screen and (max-width: 768px) {

    h1 {
        font-size: 3rem;
    }

    .whatsapp-cuadrado {
        position: fixed;
        bottom: 1%;
        width: 45px;
        height: 45px;

    }

    .whatsapp-cuadrado img {
        width: 25px;
        height: 25px;
    }

}