

@import url('https://fonts.googleapis.com/css2?family=Metrophobic&family=Monomaniac+One&display=swap');

.reset-p{
    margin: 0;
}

.navbar{
    display: flex;
    width: 100vw;
    height: 75px;
    padding: 10px;
    justify-content: space-evenly!important;
    align-items: center!important;
    background-color: white;
    position: relative;
    transition: 0.5s all;
}

.opcoes.expand{
    align-items: flex-start;
    height: 400px;
    background-color: white;
}

.opaci-opcoes.ativa{
    opacity: 1;
}

.logo-navbar{
    object-fit: cover;
}
  
.menu {
    width: 40px;
    height: 75px;
    display: none;
    flex-direction: column!important;
    justify-content: center!important;
    align-items: center!important;
    cursor: pointer;
    background-color: transparent;
    border: none;
    position: relative;
    margin-top: -10px;
  }

  
.opcoes{
    display: flex;
    justify-content: end;
    align-items: center;
    min-width: 50%;
    height: 75px;
    gap: 45px;
}

.p-opcoes{
    font-size: 16px;
    font-family: "Metrophobic", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #717275;
    transition: 0.5s all;
    cursor: pointer;
}

.p-opcoes:hover{
    color: #5BC1AC;
}

.btn-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
    border-radius: 25px;
    border: 2px solid #597081;
    transition: 0.5s all;
}

.p-btn-nav{
    font-size: 16px;
    color: #597081;
    transition: 0.5s all;
}

.btn-nav:hover{
    background-color: #5BC1AC;
    border: 2px solid #5BC1AC   ;
}

.btn-nav:hover .p-btn-nav{
    color: white;
}

@media (width < 1150px){
    .navbar{
        justify-content: space-evenly!important;
        align-items: flex-start!important;
    }
    .menu{
        display: flex;
    }

    .opcoes{
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        margin: 65px 0 0 -10px;
        padding: 20px;
        gap: 30px;
        transition: 0.5s all;
    }

    .opaci-opcoes{
        opacity: 0;
        transition: none;
    }
}