﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Montserrat,sans-serif !important;
    text-decoration: none;
}

main {
    padding-top: 80px;
}

ul{
    list-style: none;
}

.header-nav {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 88px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    width: 100%;
    padding: 0 1rem;
}

.logo {
    cursor: pointer;
    width: 11.25rem;
    height: 100%;
}

/*.header-desktop{
    display: none;
}*/

.links-nav, .links-nav:hover{
    text-decoration: none;
    color: black;
}

.links-nav-mobile {
    color: white;
}

.hamburguer img {
    max-width: 1.5rem;
    max-height: 1.5rem;
    width: 100%;
    height: 100%;
}

.menu-hamburguer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #1f3156;
    width: 100%;
    height: 100vh;
    border-radius: 1rem 1rem 0 0;
    position: fixed;
    top: 4.2rem;
    padding-top: 2.5rem;
    z-index: 9999;
    transition: all 2s ease;
}

.menu-hamburguer.hidden {
    display: none;
}

.navbar-hamburguer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.navbar-hamburguer ul{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.navbar-hamburguer ul li{
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.navbar-hamburguer svg, .header-desktop svg{
    vertical-align: sub;
}

.container .navbar-hamburguer ul li.sobre .menu-dropdown-hamb, 
.container .navbar-hamburguer ul li.solucoes .menu-dropdown-hamb {
    margin-top: 1rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.5rem;
    border-radius: 0 16px 16px 16px;
    box-shadow: 0 5px 10px rgba(0,0,0,.15);
    transition: all 2s ease;
}

.container .navbar-hamburguer ul li.sobre .menu-dropdown-hamb.hidden,
.container .navbar-hamburguer ul li.solucoes .menu-dropdown-hamb.hidden {
    display: none;
}

.navbar-hamburguer ul.menu-dropdown-hamb li {
    color: #000;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 11.75rem;
}

.header-button {
    border: 2px solid #1f3156;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    height: 2.1875rem;
    padding: 0 1rem;
}

.header-button img{
    width: auto;
    height: auto;
}

.area-cliente {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.experimente-gratis {
    background: #fff;
    border: 2px solid #fff;
    color: #000;
}

    .experimente-gratis:hover {
        color: #dfdfdf;
    }

.area-cliente img {
    filter: invert(1);
    width: 15px;
    height: 15px;
}

@media(min-width: 1401){
    .container .header-desktop ul li {
        font-size: 1rem;
        cursor: pointer;
    }
}

@media(max-width: 1400px){
    .container .header-desktop ul li {
        font-size: 14px;
        cursor: pointer;
    }
}

@media(max-width: 1280px){
    .header-desktop {
        display: none;
    }
}

@media (min-width: 1280px) {
    .container {
        width: 100%;
        max-width: 75rem;
    }

    .hamburguer, .menu-hamburguer {
        display: none;
    }

    .header-desktop {
        display: block;
        margin-top: 10px;
    }
}

@media (min-width: 1080px) {
    .header-desktop ul {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .container .header-desktop .solucoes-desktop .hidden, .container .header-desktop .sobre-desktop .hidden {
        display: none;
        transition: all 2s ease;
    }

    ul.menu-dropdown-desktop {
        position: fixed;
        top: 80px;
        height: auto;
        background: #fff;
        padding: 1rem 1.375rem;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 5px 10px rgba(0,0,0,.15);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        max-width: 23.125rem;
        transition: all 2s ease;
    }

    .area-cliente {
        border: 2px solid #1f3156;
        background: #fff;
        color: #000;
    }

    .experimente-gratis {
        border: 2px solid #1f3156;
        background: #1f3156;
        color: #fff;
        transition: all .2s ease;
    }

    .area-cliente img {
        filter: invert(0);
    }
}