/* ============================================================
   TIGERCLUB — HEADER PERFEITO ESTILO BERZERK (VERSÃO FINAL)
   ============================================================ */

/* 1) Remover qualquer barra superior */
.barra-superior,
.barra-superior *,
.barra-frase,
.barra-frase *,
.barra-superior-frase,
.barra-superior-frase * {
    display: none !important;
}

/* 2) Remover todas as buscas */
#form-busca,
#form-busca *,
.busca,
.busca *,
.area-superior .busca,
.area-superior .busca *,
header .busca,
header .busca *,
.cabecalho .busca,
.cabecalho .busca *,
.topo .busca,
.topo .busca *,
#header .busca,
#header .busca * {
    display: none !important;
}


/* ============================================================
   3) HEADER (logo à esquerda / ícones à direita)
   ============================================================ */

.area-superior {
    background: #fff !important;
    border-bottom: 1px solid #e5e5e5 !important;
    width: 100% !important;
}

.area-superior > .container {
    max-width: 100% !important;         /* 🔥 Libera header full width */
    width: 100% !important;
    padding: 20px 40px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* LOGO NO EXTREMO ESQUERDO */
.area-superior .logo {
    margin-right: auto !important;
}

.area-superior .logo img {
    max-height: 60px !important;
    width: auto !important;
}

/* ÍCONES NO EXTREMO DIREITO */
.area-superior .acoes {
    margin-left: auto !important;
    display: flex !important;
    gap: 18px !important;
}

.area-superior .acoes img,
.area-superior .acoes svg {
    width: 22px !important;
    height: 22px !important;
    filter: brightness(0);
}



/* ============================================================
   4) MENU CENTRAL DENTRO DO HEADER
   ============================================================ */

.menu {
    height: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    margin: 0 !important;
    border: 0 !important;
}

.menu > .container {
    max-width: 100% !important;
    position: relative !important;
    top: -55px !important;     /* 🔥 Sobemos o menu até a barra */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 99999 !important;
}

.menu ul {
    display: flex !important;
    gap: 40px !important;
}

.menu ul li a {
    color: #000 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    transition: .2s;
}

.menu ul li a:hover {
    color: #666 !important;
}


/* ============================================================
   5) Remover título da categoria (ex: CAMISETA DRY FIT)
   ============================================================ */
.titulo-categoria {
    display: none !important;
}


/* ============================================================
   6) RESPONSIVIDADE
   ============================================================ */

@media (max-width: 900px) {

    .area-superior > .container {
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    .menu > .container {
        top: 0 !important;
        padding-top: 10px !important;
        flex-wrap: wrap !important;
    }

    .menu ul {
        flex-wrap: wrap !important;
        gap: 18px !important;
        justify-content: center !important;
    }
}
