* {
    font-family: Inter;
}

body {
    margin: 0;
}

span {
    font-weight: 800;
}

a {
    text-decoration: none;
}

h3 {
    color: #ffffff;
}

.navbar {
    width: 20rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
}

.img-logo {
    width: 11rem;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 0 0 4rem 0;
    text-align: center;
}

.menu-button {
    color: #383838;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    width: 11rem;
}

.template {
    background-image: url('./images/image-1.png');
    background-size: cover;
    background-color: black;
    opacity: 0.8;
    background-repeat: repeat-y;
    height: 48rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.home-paragraph-container {
    margin-left: 22rem;
}

.home-paragraph {
    margin: 0 12rem 0 12rem;
}

.home-paragraph {
    width: 37rem;
    height: 22rem;
    color: #FFF;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    display: flex;
    align-items: center;
    display: flex;
    flex-direction: column;
}


.whatsapp {
    width: 100%;
    display: flex;
    position: fixed;
    left: 90%;
    top: 80%;
}

.wsp {
    width: 4rem;
    transition: scale 0.5s ease;
}

.wsp:hover {
    scale: 1.1;
}

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

    .template {
        background-size: contain;
        background-repeat: repeat;
        align-items: center;
        height: 60rem;
        display: flex;
        flex-direction: column;
        justify-content: unset;

    }

    .navbar {
        display: none;

    }

    .home-paragraph-container {
        margin: 3rem 1.5rem 5rem 1.5rem;
    }

    .home-paragraph {
        margin: 5rem 1.5rem 5rem 1.5rem;
        width: 20rem;
        text-align: center;
        height: 38rem;
    }

    .whatsapp {
        left: 75%;
        top: 90%;
        z-index: 5 !important;
    }

    .wsp {
        width: 3rem;
    }

}


nav {
    position: absolute;
    z-index: 3;
    top: 0;
    background-color: white;
    padding: 10px;
    display: none;
    align-self: flex-end;
    width: 100%;
}

/* Estilo del menú hamburguesa */
.menu-hamburguesa {
    display: inline-block;
    cursor: pointer;
}

.menu-hamburguesa .linea {
    width: 30px;
    height: 3px;
    background-color: rgb(87, 85, 85);
    margin: 5px 0;
}

.burger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 22.5rem;
}

.logo-burger {
    width: 10rem;
    margin-left: 1rem;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    width: 100%;
    right: 0;
    top: 62px;
    /* Justo debajo del menú hamburguesa */
}

.menu li {
    border-bottom: none;
}

.menu li a {
    color: rgb(87, 85, 85);
    text-decoration: none;
    padding: 15px;
    display: block;
    font-family: Inter;
}


.menu.active {
    display: flex;
    width: 100%;
    align-items: center;
    z-index: 2;
}


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

    nav {
        display: block;
        
    }

    .menu {
        display: none;

    }
}