nav{

    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    height: 120px;
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.9019257361147583) 49%, rgba(0,0,0,0.8094887613248425) 60%, rgba(0,0,0,0) 100%);
    color: var(--colorx);

}

#logo{

    position: absolute;
    left: 10px;
    top: 10px;
    height: 110px;

}

#logo:hover{

    cursor: pointer;

}

#btn-menu {
    display: none;
    position: absolute;
    right: 25px;
    top: 40px;
    font-size: 2rem;
    color: var(--color2);
}

.nav-item{

    text-decoration: none;
    color: var(--colorx);
    font-weight: 500;
    font-size: 1.1em;

}

#nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50%;
}

.nav-item:hover{

    color: var(--color2);

}

#cont-menu-lateral,
#cont-menu-lateral-o
{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 100;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: rgb(0, 0, 0, 0.5);

}


#formu-whats {

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 2px solid var(--color2);
    height: 90%;
    width: 90%;
    background-color: var(--color0);

}

.btn {

    user-select: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 8px;
    width: 40%;
    background-color: var(--color2);
    border-radius: 5px;
    color: var(--colorx);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--color2);
    font-family: "Poppins";
    margin-top: 1rem;
    font-size: 1rem;

}

.btn:hover {

    cursor: pointer;
    background-color: var(--color0);
    color: var(--color2);
    transform: scale(105%);

}

.imp {

    text-indent: 1rem;
    margin-top: 2rem;
    font-family: "Poppins";
    border-radius: 10px;
    border: 1px solid var(--color2);
    background-color: var(--color1);
    color: #fff;

}

#input-name {

    height: 40px;
    width: 50%;

}

#input-mensaje {

    resize: none;
    height: 120px;
    width: 50%;

}

.tachita{

    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--color2);
    font-size: 2rem;

}

.tachita:hover{

    color: var(--colorx);
    cursor: pointer;

}

.idiom{

    text-decoration: none;
    color: var(--colorx);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
    width: auto;
    width: 50%;
    border-radius: 10px;

}

#idiom{

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
    top: 35px;
    right: 50px;
    z-index: 90;
    font-weight: 500;
    position: absolute;
    height: 50px;
    width: 220px;
    
}

#idiom-linea{

    height: 90%;
    width: 1px;
    background-color: var(--color2);

}

#idiom:hover{

    cursor: pointer;

}

#idiom img{

    height: 40px;

}


#cont-consulta{

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100px;
    width: auto;
    padding: 0 1rem;
    gap: 1rem;
    font-weight: 600;
    z-index: 23;
    right: 16px;
    bottom: 12px;
    border-radius: 10px;
    background-color: var(--color0);
    border: 1px solid rgb(92, 195, 255);;
    filter: brightness(100%);
    transition: all 0.3s ease-in-out;

}

#cont-consulta:hover{

    cursor: pointer;
    filter: brightness(70%);
    transform: scale(95%);

}

#cont-consulta img{

    padding: 0 1rem;
    border-radius: 5px;
    height: 50%;
    background-color: var(--colorx);

}

#whats {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100px;
    width: auto;
    padding: 0 1rem;
    gap: 1rem;
    z-index: 23;
    right: 16px;
    bottom: 122px;
    border-radius: 10px;
    background-color: var(--color0);
    border: 1px solid greenyellow;
    filter: brightness(100%);
    transition: all 0.3s ease-in-out;

}

#whats:hover {

    cursor: pointer;
    filter: brightness(70%);
    transform: scale(95%);

}

#whats img{

    height: 80%;

}

#whats p{

    font-weight: 600;

}


@media (max-width:768px) {

    #whats{

        height: 70px;
        bottom: 7rem;

    }

    #cont-consulta{

        flex-direction: column-reverse;
        gap: 0;
        height: 90px;
        font-size: 0.9em;

    }

    #idiom{

        right: 15%;
        font-size: 0.7rem;

    }

    #idiom img{

        height: 30px;

    }

    #btn-menu {
        display: block;
    }

    nav { 
        overflow: hidden;
        align-items: center;
    }

    #nav-items {
        display: none;
        position: relative;
        top: 60px;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        height: 150px;
    }

    #logo{

        height: 90px;

    }

}