/* =========================
   Fontes
========================= */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* =========================
   Reset básico
========================= */
•⁠  ⁠{
    box-sizing: border-box;
}

/* =========================
   Tipografia global
   (sem :not, para a lousa aceitar melhor)
========================= */
input,
input::placeholder,
span,
strong,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600 !important;
}

/* =========================
   Barra superior / Header
========================= */
.barra-inicial,
#barraTopo,
.atalhos-mobile {
    /* fallback + rgba */
    background-color: rgb(0, 25, 255);
    background-color: rgba(0, 25, 255, 0.8);

    border-bottom: 1px solid rgb(51, 71, 255);

    box-shadow: 0 0 1rem #000000;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
   
    backdrop-filter: blur(4px);
}

#barraTopo,
.atalhos-mobile {
    display: flex;
    align-items: center;
    height: 3.25rem;
    padding: 0;
}

#barraTopo .conteiner {
    display: flex;
    align-items: center;
    height: 100%;
}

#barraTopo .row-fluid {
    display: flex;
    align-items: center;
}

.barra-inicial *,
#barraTopo * {
    color: #ffffff;
}

.canais-contato ul li {
    border: none;
}

/* =========================
   Busca e Carrinho (TOPO)
========================= */
#barraTopo .busca,
#barraTopo .carrinho,
.atalhos-mobile li {
    height: 2.5rem;
    padding: 0 0.375rem !important; /* (2.5rem - 1.75rem) / 2 */

    /* fallback + rgba */
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.15);

    border: 1px solid rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* item “vazio” sem borda/fundo */
.atalhos-mobile li.vazia {
    border: none;
    background-color: transparent;
    padding: 0;
}

#barraTopo .busca .botao-busca,
#barraTopo .carrinho .icon-shopping-cart,
#barraTopo .carrinho .qtd-carrinho {
    width: 1.75rem;
    height: 1.75rem;
}

#barraTopo .busca .botao-busca {
    background-color: rgb(250, 250, 255);
    color: rgb(51, 71, 255);
}

#barraTopo .busca input::placeholder {
    color: #ffffff;
    opacity: 0.9;
}

#barraTopo .carrinho span b {
    font-weight: 400;
}

/* =========================
   Header MOBILE (atalhos + busca)
========================= */
.atalhos-mobile li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    margin: 0.375rem;
    border-radius: 15px;
}

.atalhos-mobile li > a {
    position: inherit;
    font-size: 1rem !important;
}

.busca-mobile {
    display: flex;
    align-items: center;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    overflow: inherit !important;
}

.busca-mobile .atalho-menu {
    height: 3rem;
    width: 3rem;

    background-color: rgb(0, 25, 255);
    background-color: rgba(0, 25, 255, 1);

    border: 1px solid rgb(51, 71, 255);

    border-radius: 0.75rem;

    box-shadow: 0 0 2rem -0.5rem #000000;
    box-shadow: 0 0 2rem -0.5rem rgba(0, 0, 0, 0.2);

    padding-top: 8.5px !important;
    transition: background-color 0.3s;
}

.busca-mobile .atalho-menu:hover {
    background-color: rgb(51, 71, 255);
}

.busca-mobile .borda-principal {
    border: none;
}

/* =========================
   Busca e Carrinho (GERAL)
========================= */
.busca,
.carrinho {
    display: flex;
    align-items: center;
    height: 3rem;
    padding: 0 0.5rem; /* (3rem - 2rem) / 2 */
    border-radius: 0.75rem;

    box-shadow: 0 0 2rem -0.5rem #000000;
    box-shadow: 0 0 2rem -0.5rem rgba(0, 0, 0, 0.2);
}

.busca {
    background-color: rgb(250, 250, 255);
    border: 1px solid rgb(215, 215, 220);
}

.carrinho {
    background-color: rgb(51, 71, 255);
    border: none;
}

.busca form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.busca form input {
    width: 100%;
    border: none;
    background-color: transparent;
    box-shadow: none !important;
}

.busca .botao-busca,
.carrinho .icon-shopping-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    position: inherit;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.busca .botao-busca {
    background-color: rgb(51, 71, 255);
    color: #ffffff;
}

.carrinho .icon-shopping-cart {
    background-color: rgb(250, 250, 255);
    color: rgb(51, 71, 255) !important;
}

.busca ::before,
.carrinho ::before {
    font-size: 1rem;
}

/* =========================
   Conteúdo do carrinho
========================= */
.carrinho > a {
    display: flex;
    align-items: center;
    width: 100%;
}

.carrinho > a > span {
    margin-left: 10px;
    padding: 0;
    white-space: nowrap;
}

.carrinho > a > span b {
    font-weight: 700;
}

.carrinho.vazio > a span {
    margin-left: 10px !important;
    padding: 0 !important;
}

.carrinho .qtd-carrinho {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0 0 0 7.5px !important;
    font-weight: 900;

    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.1);

    border-radius: 0.5rem;
    flex-shrink: 0;
    justify-self: end;
}

.carrinho a * {
    color: #ffffff !important;
}

/* =========================
   Botões e elementos diversos
========================= */
.botao,
.botao:hover {
    background-image: none !important;
}

.marcas {
    display: none;
}

/* =========================
   Containers principais
========================= */
.conteiner {
    width: 100%;
    max-width: none;
    box-shadow: none;
}

.tema-escuro .conteiner {
    background-color: #323232;
}

.tema-transparente .conteiner {
    background-color: transparent;
}

.conteiner-principal .conteiner {
    padding: 20px;
    background-color: rgb(250, 250, 255);
}

/* =========================
   Banners
========================= */
.secao-banners .conteiner {
    padding: 0;
}

.secao-banners .slides li {
    position: relative;
    height: 0;
    padding-top: 35.714285%; 
    overflow: hidden;
}

.secao-banners .slides li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* =========================
   Colunas / menu lateral
========================= */
.coluna > div {
    margin: 0;
}

.coluna .menu.lateral {
    border: none;
}

.coluna .menu.lateral .nivel-um {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgb(236, 236, 241);
    border: 1px solid rgb(215, 215, 220);
}

.coluna .menu.lateral .nivel-um > li > a {
    box-shadow: 0 0 2rem -0.5rem #000000;
    box-shadow: 0 0 2rem -0.5rem rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: background-color 0.3s, font-weight 0.3s;
}

.coluna .menu.lateral .nivel-um > li > a:hover {
    background-color: rgb(0, 25, 255);
}

.coluna .menu.lateral .nivel-um > li > a:hover strong {
    font-weight: 600;
    color: white;
}

/* =========================
   Corpo / títulos de categoria
========================= */
.pagina-inicial #corpo .conteiner {
    padding: 0 20px 0 0;
}

.titulo-categoria {
    border-color: rgb(0, 25, 255);
    padding: 10px 0 !important;
    background-color: transparent !important;
}

.titulo-categoria strong {
    font-size: 1.5rem;
    color: rgb(0, 25, 255);
}

/* =========================
   Cabeçalho / ações da conta
========================= */
#cabecalho .acoes-conta li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

#cabecalho .acoes-conta i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.75rem;
    width: 1.75rem;

    background-color: rgb(51, 71, 255);

    border-radius: 0.5rem;
}

/* =========================
   Responsividade
========================= */
@media only screen and (max-width: 767px) {
    #corpo .conteiner {
        padding: 20px !important;
    }

    .marcas + .listagem .titulo-categoria:first-child {
        margin: 0;
    }
}

.pagina-produto .coluna .menu.lateral .nivel-um, .pagina-produto .produto > .row-fluid {
    border-radius: 20px;
    background-color: rgb(247, 247, 252) !important;
    border: 1px solid rgb(220, 220, 225) !important;
    box-shadow: 0 0 1rem rgb(230, 230, 230);
}

.pagina-produto .produto > .row-fluid {
    padding: 25px;
    margin-bottom: 20px; 
    outline: none;
}

.pagina-produto .produto > .row-fluid > div > div > div {
    padding: 15px;
    background-color: #fff;
    border: 1px solid rgb(230, 230, 235) !important;
    box-shadow: none;
    border-radius: 10px !important;
    margin-bottom: 10px;
}

.pagina-produto .produto .botao-comprar {
    border-radius: 10px;
    box-shadow: 0 0 1rem -0.5rem #0019FF;
    font-family: 'Inter', 'sans-serif';
    font-weight: 600;
}

#comentarios-container {
    display: none !important;
}

.institucional .links-rodape-categorias {
    display: none;
}