/*////////////// CSS REVISTO //////////////*/

/* MIN WIDTH  */
@media (min-width: 576px) {
    /*geral*/
    .g-sm-0{
        gap: 0;
    }
}
@media (min-width: 1200px) {

    /* Header */
    .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .nav-links-group {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
    }

    .nav-btns-group {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .nav-user-group {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
    }
}

@media (min-width: 2000px) {

    /* Header */
    .navbar.navbar-index>div {
        max-width: 2000px;
        gap: 3rem;
    }
}



/* BETWEEN WIDTH */
@media (max-width: 1400px) and (min-width: 1200px) {

    /* Header */
    .header-btn-icon {
        width: 100%;
    }

    .header-btn-label {
        display: none;
    }

    .botao-carrinho,
    .ativacao-botao {
        width: 60px;
    }
}



/* MAX WIDTH  */
@media (max-width: 1199px) {

    /* Header */
    .navbar {
        height: auto;
        min-height: 70px;
    }

    .nav-links-group,
    .nav-btns-group,
    .nav-user-group {
        width: 100%;
        padding: 12px 0;
        border-top: 1px solid #f0f0f0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .nav-links-group:first-child {
        border-top: none;
        padding-top: 8px;
    }

    .nav-links-group .nav-link {
        text-align: left;
        padding: 10px 16px;
        border-bottom: none;
    }

    .navbar-index .nav-links-group .nav-link:hover {
        border-bottom: none;
        background-color: #f7f7f7;
        border-radius: 6px;
    }

    .nav-btns-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .botao-carrinho,
    .ativacao-botao {
        width: 280px;
        margin: 0;
    }

    .nav-user-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .nav-user-block {
        padding: 8px 16px;
        width: 100%;
        align-items: center;
    }

    .nav-user-card {
        flex: 1;
        max-width: 100%;
    }

    .nav-user-block .nav-logout-btn svg {
        width: 24px;
        height: 24px;
    }

    .lang-switcher .nav-logout-btn svg {
        width: fit-content;
        height: fit-content;
    }

    #navbarSupportedContent {
        padding-bottom: 20px;
    }

    /* banner-index */
    .item.slide-1,
    .item.slide-2 {
        height: 55vh;
        min-height: 500px;
    }
}
@media (max-width:768px){
    .g-mobile-3{
        gap: 16px;
    }
}

@media (max-width: 575px) {

    /*geral*/
    


    /* Header */
    .botao-carrinho,
    .ativacao-botao {
        max-width: 100%;
    }

    .modal-dialog {
        margin: 80px 16px 16px;
    }

    .banner-img-wrapper {
        aspect-ratio: 9 / 10;
    }
}