body {
    padding-top: 120px;
    /* Ajuste conforme necessário */
}
@media (min-width: 767px) and (max-width: 810px) {
    .quebra {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .quebra {
        display: flex !important; /* Mostra novamente abaixo de 576px */
    }
}


/* 🔹 Navbar superior fixa */
.top-navbar {
    background: #f1f1f1;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

/* 🔹 Pesquisa e login no PC */
.search-login-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-group {
    max-width: 250px;
}

/* 🔹 Navbar inferior */
.bottom-navbar {
    background: #f1f1f1;
    padding: 10px 20px;
    box-shadow: 0px 15px 10px -10px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    top: 60px;
    /* Ajuste conforme necessário */
    width: 100%;
    z-index: 1029;
}

/* 🔹 Corrige a navbar collapse para manter o menu à esquerda */
.navbar-collapse {
    width: 100%;
    justify-content: flex-start;
}

/* 🔹 No mobile, mantém a logo centralizada e botão WB Fidelidade à direita */
@media (max-width: 767px) {
    body {
        padding-top: 110px;
        /* Ajuste conforme necessário */
    }

    .top-navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    .top-navbar .navbar-brand {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .bottom-navbar {
        top: 50px;

    }

    .search-login-container {
        display: flex;
        flex: 1;
        justify-content: center;
    }

    .btn-login-container {
        display: flex;
        justify-content: flex-end;
        flex: 1;
    }

    .pad {
        padding-top: 5px !important;
    }

    .pad2 {
        padding-top: 10px !important;
    }

}