

/*==========root=======================================*/
:root { 
    /* SEU PADRÃO DE CORES */
    --bg: #050508; 
    --surface: rgba(22, 22, 30, 0.7); 
    --surface-blur: blur(20px);
    --border: rgba(255, 255, 255, 0.05); 
    --text-main: #fcfcfd; 
    --text-muted: #64748b; 
    --accent: #fdc727; 
    --accent-glow: rgba(226, 185, 60, 0.15); 
    
    /* Raios - mantidos */
    --radius-lg: 18px; 
    --radius-md: 14px; 
    --radius-sm: 10px;
    
    /* Transições */
    --premium-easing: cubic-bezier(0.16, 1, 0.3, 1);
    --menu-duration: 0.8s; /* Duração mais lenta para o menu */
}
/*==========root=======================================*/

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    -webkit-tap-highlight-color: transparent; 
}

/*==========body=======================================*/

/* ==========================================
   ESTILOS GERAIS DO BODY
   ========================================== */

/* Container principal da página */
body { 
    background-color: var(--bg); 
    color: var(--text-main); 
    min-height: 100vh; 
    padding-bottom: 85px; 
    
    overflow: hidden;
    
    /* Gradientes principais para profundidade */
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(30, 30, 35, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 25%, rgba(25, 25, 30, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 75%, rgba(20, 20, 25, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 15% 80%, rgba(35, 35, 40, 0.03) 0%, transparent 35%),
        radial-gradient(ellipse at 90% 65%, rgba(28, 28, 33, 0.05) 0%, transparent 40%),
        linear-gradient(155deg, #010101 0%, #030303 25%, #010101 50%, #000000 75%, #020202 100%),
        
        /* Textura de pontos */
        radial-gradient(circle at 5% 15%, rgba(120, 120, 120, 0.008) 1px, transparent 1px),
        radial-gradient(circle at 35% 45%, rgba(140, 140, 140, 0.006) 1px, transparent 1px),
        radial-gradient(circle at 65% 25%, rgba(110, 110, 110, 0.009) 1px, transparent 1px),
        radial-gradient(circle at 85% 55%, rgba(130, 130, 130, 0.005) 1px, transparent 1px),
        radial-gradient(circle at 50% 85%, rgba(120, 120, 120, 0.007) 1px, transparent 1px),
        radial-gradient(circle at 20% 65%, rgba(150, 150, 150, 0.004) 1px, transparent 1px);
    
    /* Tamanhos e posições diferentes para cada camada de pontos */
    background-size: 
        auto, auto, auto, auto, auto, auto, /* Para os gradientes principais */
        90px 90px, 110px 110px, 80px 80px, 100px 100px, 120px 120px, 95px 95px; /* Para os pontos */
    
    background-position: 
        0 0, 0 0, 0 0, 0 0, 0 0, 0 0, /* Para os gradientes principais */
        0 0, 30px 20px, 15px 40px, 50px 10px, 25px 60px, 10px 30px; /* Para os pontos */
    
    background-attachment: fixed;
    
    display: flex; 
    justify-content: center; 
    letter-spacing: -0.01em;
    position: relative;
}

/* ==========================================
   TEXTURA DE LINHAS FINAS (OVERLAY)
   ========================================== */

/* Camada adicional com textura de linhas */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.004) 0px, rgba(255, 255, 255, 0.004) 1px, transparent 1px, transparent 2px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.003) 0px, rgba(255, 255, 255, 0.003) 1px, transparent 1px, transparent 2px);
    opacity: 0.6;
    mix-blend-mode: overlay;
}

/*==========body=======================================*/


/* ==========================================
   CONTAINER PRINCIPAL DO APP
   ========================================== */

.app-shell { 
    position: relative; 
    z-index: 1; 
    width: 100%; 
    max-width: 480px; 
    display: flex; 
    flex-direction: column; 
    gap: 8px;
    margin-top: -10px; /* Sobe mais o conteúdo */

}

@keyframes fadeInIndex {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/*===========HEADER (TOPO)=======================*/

.app-header { 
    position: sticky; 
    top: 0; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 16px; 
    z-index: 90; 
    background-color: var(--overlay-bg); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    border-bottom: 1px solid var(--border); 
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-bottom: 20px;
}

.logo-img { 
    height: 38px; 
    width: auto; 
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); 
}

.menu-hamburger { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    gap: 5px;
    width: 24px; 
    height: 24px; 
    background: none; 
    border: none; 
    cursor: pointer; 
}

.menu-hamburger span { 
    display: block; 
    height: 2px; 
    background-color: var(--text-main); 
    border-radius: 2px; 
    transition: all 0.6s var(--premium-easing); 
}

.menu-hamburger span:nth-child(1) { width: 18px; } 
.menu-hamburger span:nth-child(2) { width: 24px; background-color: var(--accent); } 
.menu-hamburger span:nth-child(3) { width: 12px; }

.header-right { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
}

.bag-btn { 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid var(--border); 
    width: 42px; 
    height: 42px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    cursor: pointer; 
    transition: all 0.6s var(--premium-easing); 
}

.bag-btn:hover {
    background: var(--surface-hover);
    border-color: var(--accent);
    transform: scale(1.05);
}

.bag-count { 
    position: absolute; 
    top: -2px; 
    right: -2px; 
    background: var(--accent); 
    color: var(--text-inverse); 
    font-size: 10px; 
    font-weight: 700; 
    min-width: 16px; 
    height: 16px; 
    border-radius: 50%; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    border: 2px solid var(--bg);
}

.bag-count.show { 
    display: flex; 
}

.bag-btn svg { 
    width: 18px; 
    height: 18px; 
    stroke: var(--text-main); 
    fill: none; 
    stroke-width: 2; 
}
/*===========HEADER (TOPO)=======================*/


/*==============MENU LATERAL (DRAWER) PREMIUM==============*/
/* OVERLAY */
.menu-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: var(--bg);
    backdrop-filter: blur(12px); 
    z-index: 999; 
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.8s var(--premium-easing); 
}

.menu-overlay.open { 
    opacity: 1; 
    pointer-events: auto; 
}

/* DRAWER MENU */
.drawer-menu { 
    position: fixed; 
    top: 0; 
    left: -340px; 
    width: 330px; 
    height: 100%; 
    background: linear-gradient(165deg, var(--bg) 0%, #0a0a12 40%, #060608 100%); 
    z-index: 1000; 
     border-radius: 0 5% 5% 0;
    padding: 30px 0 20px 0; 
    display: flex; 
    flex-direction: column; 
    /* Opção 2 - Sombra bem discreta */
    box-shadow: 10px 0 25px rgba(0, 0, 0, 0.15), inset -1px 0 0 var(--border);
    transition: left 0.8s var(--premium-easing); 
    overflow: hidden;
    contain: paint; 
    will-change: left; 
}

.drawer-menu.open { 
    left: 0; 
}

/* VIDEO BACKGROUND */
.drawer-video-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    z-index: 1; 
    opacity: 0.3;
    pointer-events: none;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    filter: saturate(0.7) brightness(0.6);
}

/* OVERLAY GRADIENTE */
.drawer-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(5, 5, 8, 0.7) 0%, 
        rgba(5, 5, 8, 0.85) 30%,
        var(--bg) 70%,
        #060608 100%);
    z-index: 2; 
}



@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 15px); }
}

.drawer-menu > *:not(.drawer-video-bg) { 
    position: relative; 
    z-index: 3; 
}

/* HEADER DO DRAWER */
.drawer-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 24px; 
    padding: 0 24px;
    opacity: 0; 
    transform: translateX(-20px); 
    transition: opacity 0.7s var(--premium-easing), transform 0.7s var(--premium-easing);
    transition-delay: 0.15s; 
}

.drawer-menu.open .drawer-header {
    opacity: 1;
    transform: translateX(0);
}

/* LOGO SIMPLES */
.drawer-logo-wrap {
    display: flex;
    align-items: center;
}

.drawer-logo-img {
    width: 80px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.6s var(--premium-easing);
    filter: brightness(1);
}

.drawer-logo-img:hover {
    transform: scale(1.05);
}

.drawer-close { 
    background: rgba(255, 255, 255, 0.04); 
    border: 1px solid var(--border);
    width: 38px; 
    height: 38px; 
    border-radius: 50%; 
    color: var(--text-main); 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.7s var(--premium-easing); 
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.drawer-close::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--danger) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s var(--premium-easing);
}

.drawer-close:hover { 
    background: var(--danger); 
    transform: rotate(180deg) scale(1.1); 
    border-color: var(--danger);
    box-shadow: 0 0 30px rgba(255, 59, 48, 0.6);
}

.drawer-close:hover::before {
    opacity: 1;
}

/* USUÁRIO */
.drawer-user { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    padding: 16px 18px; 
    margin: 0 20px 28px 20px; 
    background: rgba(22, 22, 30, 0.083);
    border: 1px solid var(--border); 
    border-radius: var(--radius-lg); 
    backdrop-filter: var(--surface-blur);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.137), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    opacity: 0; 
    transform: translateX(-20px); 
    transition: opacity 0.7s var(--premium-easing), transform 0.7s var(--premium-easing);
    transition-delay: 0.25s; 
    position: relative;
    overflow: hidden;
}



.drawer-menu.open .drawer-user {
    opacity: 1;
    transform: translateX(0);
}



.drawer-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.drawer-user-dot { 
    width: 7px; 
    height: 7px; 
    background: var(--success); 
    border-radius: 50%; 
    box-shadow: 0 0 12px var(--success), 0 0 25px rgba(76, 217, 100, 0.4);
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
    position: absolute;
    top: 14px;
    right: 14px;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.drawer-user-name { 
    font-size: 15px; 
    font-weight: 700; 
    color: var(--text-main);
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-user-status {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* LINHA DIVISÓRIA */
.drawer-divider {
    height: 1px;
    margin: 0 24px 20px 24px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.3;
    transform: scaleX(0);
    transition: opacity 0.7s var(--premium-easing), transform 0.7s var(--premium-easing);
    transition-delay: 0.35s;
}

.drawer-menu.open .drawer-divider {
    opacity: 0.3;
    transform: scaleX(1);
}

/* NAVEGAÇÃO */
.drawer-nav { 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
    padding: 0 14px; 
    opacity: 0; 
    transform: translateX(-20px); 
    transition: opacity 0.7s var(--premium-easing), transform 0.7s var(--premium-easing);
    transition-delay: 0.4s; 
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.drawer-nav::-webkit-scrollbar {
    width: 3px;
}

.drawer-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.drawer-menu.open .drawer-nav {
    opacity: 1;
    transform: translateX(0);
}

.drawer-link { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    padding: 13px 18px; 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: 500; 
    border-radius: var(--radius-md); 
    transition: all 0.6s var(--premium-easing); 
    position: relative;
    letter-spacing: 0.2px;
}

.drawer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--accent), #e2b93c);
    border-radius: 0 3px 3px 0;
    transition: transform 0.5s var(--premium-easing);
    box-shadow: 0 0 15px var(--accent-glow);
}

.drawer-link:hover, 
.drawer-link.active { 
    background: rgba(255, 255, 255, 0.04); 
    color: var(--text-main);
    transform: translateX(5px);
}

.drawer-link:hover::before,
.drawer-link.active::before {
    transform: translateY(-50%) scaleY(1);
}

.drawer-link:hover .drawer-icon { 
    transform: translateX(4px) scale(1.1); 
    filter: brightness(1.3) drop-shadow(0 0 8px var(--accent-glow));
}

.drawer-link.active .drawer-icon {
    filter: brightness(1.4) drop-shadow(0 0 10px var(--accent-glow));
}

.drawer-icon { 
    width: 28px; 
    height: 28px; 
    object-fit: contain; 
    transition: all 0.6s var(--premium-easing); 
    /* filter: brightness(0) invert(1) opacity(0.7); */ /*<<<<<<<<<<<<<<<<<<<*/
    flex-shrink: 0;
}

.drawer-link-text {
    flex: 1;
}

.drawer-link-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.drawer-badge-new {
    background: linear-gradient(135deg, var(--accent), #e2b93c);
    color: var(--bg);
    box-shadow: 0 2px 10px var(--accent-glow);
}

.drawer-badge-count {
    background: rgba(255, 59, 48, 0.2);
    color: #FF3B30;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

/* RODAPÉ DO DRAWER */
.drawer-footer { 
    margin-top: auto; 
    padding: 16px 20px 0 20px;
    text-align: center;
    opacity: 0; 
    transform: translateX(-20px); 
    transition: opacity 0.7s var(--premium-easing), transform 0.7s var(--premium-easing);
    transition-delay: 0.5s; 
}

.drawer-menu.open .drawer-footer {
    opacity: 1;
    transform: translateX(0);
}

/* REDES SOCIAIS */
.drawer-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.drawer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    transition: all 0.6s var(--premium-easing);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.drawer-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s var(--premium-easing);
}

.drawer-social-link:hover::before {
    opacity: 1;
}

.drawer-social-link svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.6);
    transition: all 0.6s var(--premium-easing);
    position: relative;
    z-index: 2;
}

.drawer-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
}

.drawer-social-link:hover svg {
    fill: #fff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Cores específicas por rede */
.drawer-social-instagram::before { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.drawer-social-instagram:hover { box-shadow: 0 8px 25px rgba(221, 42, 123, 0.5); }

.drawer-social-facebook::before { background: #1877F2; }
.drawer-social-facebook:hover { box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5); }

.drawer-social-twitter::before { background: #000000; }
.drawer-social-twitter:hover { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6); border-color: rgba(255, 255, 255, 0.3); }

.drawer-social-youtube::before { background: #FF0000; }
.drawer-social-youtube:hover { box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5); }

.drawer-social-whatsapp::before { background: #25D366; }
.drawer-social-whatsapp:hover { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }

.drawer-social-tiktok::before { background: #000000; }
.drawer-social-tiktok:hover { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6); border-color: rgba(255, 255, 255, 0.3); }

.drawer-footer-text {
    font-size: 10px; 
    color: var(--text-muted); 
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.6;
}

.drawer-footer-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
}

/* RESPONSIVIDADE */
@media (max-width: 380px) {
    .drawer-menu {
        width: 290px;
        left: -300px;
    }
    
    .drawer-menu.open {
        left: 0;
    }
    
    .drawer-logo-img {
        width: 60px;
    }
    
    .drawer-social-link {
        width: 34px;
        height: 34px;
    }
}
/*==============MENU LATERAL (DRAWER) PREMIUM==============*/





































/*========COMTEUDO DA PAGINA============================================*/

/* ==========================================
   HERO BANNER
   ========================================== */

.hero-banner { 
    padding: 4px 18px 4px 18px; 
} 

.hero-banner h1 strong { 
    display: block; 
    font-weight: 800; 
    font-size: 22px; 
    color: var(--accent); 
    letter-spacing: -1px; 
}

.hero-banner h1 { 
    font-size: 13px; 
    font-weight: 300; 
    line-height: 1.2; 
    color: rgba(252, 252, 253, 0.6);
}

/* ==========================================
   BANNER SLIDER
   ========================================== */

.banner-slider { 
    margin: 0 18px 8px 18px; /* Reduzi o margin-bottom de 16px para 8px */
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    position: relative; 
    height: 180px; 
    background: var(--surface); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: var(--surface-blur);
    -webkit-backdrop-filter: var(--surface-blur);
}

.banner-slide { 
    position: absolute; 
    inset: 0; 
    display: flex; 
    align-items: flex-end; 
    padding: 20px; 
    color: var(--text-main); 
    opacity: 0; 
    transition: opacity 0.8s var(--premium-easing); 
    background-size: cover; 
    background-position: center; 
}

.banner-slide::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.1) 100%); 
    z-index: 1; 
}

.banner-slide > div { 
    position: relative; 
    z-index: 2; 
    transform: translateY(10px); 
    transition: transform 0.6s var(--premium-easing); 
}

.banner-slide.active { 
    opacity: 1; 
}

.banner-slide.active > div { 
    transform: translateY(0); 
}

.banner-slide h2 { 
    font-size: 14px; 
    font-weight: 800; 
    color: var(--text-main); 
    letter-spacing: -0.5px; 
    margin: 2px 0; 
} 

.banner-slide p { 
    font-size: 9px; 
    color: var(--text-muted); 
    margin-top: 2px; 
    line-height: 1.3; 
}

.banner-dots { 
    position: absolute; 
    bottom: 14px; 
    right: 22px; 
    display: flex; 
    gap: 6px; 
    z-index: 2;
    opacity: 0.4; /* deixa os pontinhos mais discretos */
}

.banner-dot { 
    width: 7px; 
    height: 7px; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.3); 
    border: none; 
    cursor: pointer; 
    transition: all 0.4s var(--premium-easing); 
}

.banner-dot.active { 
    background: var(--accent); 
    width: 20px; 
    border-radius: 4px; 
    box-shadow: 0 0 10px var(--accent-glow);
}




/* ==========================================
   CATEGORIAS - ITENS
   ========================================== */

.section-headline-categories-slider { 
    font-size: 13px; 
    font-weight: 800; 
    padding: 0 18px 0 18px;
    margin-bottom: -4px;
    color: var(--text-main); 
    letter-spacing: -0.5px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.section-headline-categories-slider span.see-all { 
    font-size: 16px; 
    color: var(--accent); 
    font-weight: 500; 
    cursor: pointer; 
}

.categories-slider { 
    display: flex; 
    gap: 15px;
    padding: 10px 18px 15px 18px;
    justify-content: space-between; 
    width: 100%; 
    overflow: hidden; /* Alterado de overflow-x: auto para hidden */
} 

.categories-slider::-webkit-scrollbar { 
    display: none; 
}

.category-wrapper { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    cursor: pointer; 
    flex: 1; 
    max-width: 85px;
    min-width: 60px; /* Reduzi para caber melhor em telas menores */
    text-decoration: none; 
    gap: 0;
}

.category-box { 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    width: 65px;
    height: 65px;
    padding: 8px;
    background: var(--surface); 
    border: 1px solid var(--border); 
    border-radius: var(--radius-md); 
    transition: all 0.4s var(--premium-easing); 
    backdrop-filter: var(--surface-blur);
    -webkit-backdrop-filter: var(--surface-blur);
}

.wrapper-icon-box { 
    width: 32px;
    height: 32px;
    object-fit: contain; 
    transition: all 0.4s var(--premium-easing); 
    filter: brightness(0) invert(1);
}

/* Texto dentro do box */
.category-box .category-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: all 0.4s var(--premium-easing);
}

/* Removendo o span externo antigo */
.category-wrapper > span { 
    display: none;
}

.category-wrapper:hover .category-box { 
    transform: translateY(-3px); 
    border-color: var(--accent);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.category-wrapper.active .category-box { 
    background: var(--accent); 
    border-color: var(--accent); 
    box-shadow: 0 8px 20px var(--accent-glow); 
} 

.category-wrapper.active .wrapper-icon-box { 
    filter: brightness(0) invert(1); 
}

.category-wrapper.active .category-box .category-label { 
    color: #ffffff;
    font-weight: 700; 
}

/* ==========================================
   PRODUCT CARDS »»»»»»»»««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««
   ========================================== */

.section-headline-products-deck { 
    font-size: 13px; 
    font-weight: 800; 
    padding: 0 18px 0 18px; /* Remove padding vertical */
    margin-bottom: -4px; /* Puxa os cards para perto */
    color: var(--text-main); 
    letter-spacing: -0.5px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.section-headline-products-deck span.see-all { 
    font-size: 16px; 
    color: var(--accent); 
    font-weight: 500; 
    cursor: pointer; 
}

.products-deck { 
    display: flex; 
    gap: 10px; 
    overflow-x: auto; 
    padding: 6px 14px 12px 14px; 
    -webkit-overflow-scrolling: touch; 
    scroll-snap-type: x mandatory; 
}

.products-deck::-webkit-scrollbar { 
    display: none; 
}

.product-card {
    background: var(--surface); 
    border: 1px solid var(--border); 
    min-width: 80px; 
    max-width: 95px; 
    height: 100px; /* Altura fixa adicionada para o card não encolher */
    flex: 0 0 calc(33.333% - 7px); 
    border-radius: 12px; 
    padding: 0; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; /* Joga o texto para a base do card */
    cursor: pointer; 
    text-decoration: none; 
    color: var(--text-main); 
    scroll-snap-align: center;
    overflow: hidden; 
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s var(--premium-easing);
    backdrop-filter: var(--surface-blur);
    -webkit-backdrop-filter: var(--surface-blur);
}

.product-card:hover, 
.product-card.zoomed { 
    transform: translateY(-4px) scale(1.02); 
    border-color: var(--border); 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow); 
}

/* Imagem agora fica absoluta, cobrindo 100% do fundo */
.product-card .img-frame { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    z-index: 0;
    overflow: hidden; 
}

.product-card .img-frame img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Garante que a imagem não estique, mantendo a proporção */
    transition: all 0.4s var(--premium-easing); 
}

.product-card:hover .img-frame img { 
    transform: scale(1.08); 
}

.product-card .card-tag { 
    position: absolute; 
    top: 6px; 
    left: 6px; 
    z-index: 2; /* Garante que a tag fique acima da imagem */
    background: var(--bg); 
    backdrop-filter: var(--surface-blur); 
    padding: 2px 5px; 
    border-radius: 10px; 
    font-size: 5px; 
    font-weight: 700; 
    color: var(--accent); 
    letter-spacing: 0.5px; 
    text-transform: uppercase; 
    border: 1px solid var(--accent-glow); 
}

/* O conteúdo de texto agora flutua sobre a imagem */
.product-card .card-content { 
    padding: 8px; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end;
    position: relative;
    z-index: 1; /* Mantém o texto acima da imagem */
    /* Gradiente escuro apenas embaixo para garantir que o texto seja legível por cima da foto */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); 
}

.product-card .title { 
    font-size: 10px; 
    font-weight: 700; 
    white-space: normal; /* Permite quebra de linha */
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Máximo de 2 linhas */
    -webkit-box-orient: vertical;
    line-height: 1.3;
    color: #ffffff;
}

.product-card .subtitle { 
    font-size: 8px; 
    color: rgba(255, 255, 255, 0.7); /* Branco com transparência */
    margin-top: 2px; 
}

.product-card .footer-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    margin-top: 8px; 
}

.product-card .price { 
    font-size: 11px; 
    font-weight: 800; 
    color: #ffffff; /* Sugestão: branco para contraste */
}

.product-card .add-btn { 
    width: 22px; 
    height: 22px; 
    background: var(--surface); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--accent); 
    font-size: 12px; 
    font-weight: 500; 
    transition: all 0.4s var(--premium-easing); 
    border: 1px solid var(--border); 
}

.product-card:hover .add-btn { 
    background: var(--accent); 
    color: var(--bg); 
    border-color: var(--accent); 
    transform: scale(1.1); 
    box-shadow: 0 0 15px var(--accent-glow);
}

/* ==========================================
   TEXTOS PREMIUM
   ========================================== */

.premium-text h4 { 
    font-size: 11px; 
    color: var(--accent); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 700; 
    margin-bottom: 2px;
}

.premium-text h3 { 
    font-size: 16px; 
    font-weight: 800; 
    color: var(--text-main);
}

.premium-text p { 
    font-size: 10px; 
    color: var(--text-muted); 
    margin-top: 2px; 
}

/*========COMTEUDO DA PAGINA===========================================*/




































/*========MENU=========NAVBAR INFERIOR=====================*/
        /* ==========================================
        NAVBAR INFERIOR - ESTILO FLUTUANTE ISLAND
        ========================================== */

        .navbar-bottom { 
            position: fixed; 
            bottom: 16px; 
            left: 16px; 
            right: 16px; 
            height: 72px; 
            background: rgba(19, 19, 26, 0.85); 
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            display: flex; 
            justify-content: space-around; 
            align-items: center; 
            border: 1px solid rgba(255,255,255,0.04); 
            padding: 0 12px; 
            z-index: 100; 
            border-radius: 30px; 
            box-shadow: 0 16px 44px rgba(0,0,0,0.6);
        }

        /* ==========================================
        ITENS DA NAVBAR
        ========================================== */

        .navbar-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            color: var(--text-muted); 
            font-size: 10px; 
            font-weight: 600; 
            gap: 5px; 
            width: 54px; 
            height: 54px; 
            border-radius: 20px;
            cursor: pointer; 
            text-decoration: none; 
            transition: all 0.6s var(--premium-easing); /* Aumentei a duração */
        }

        .navbar-item:hover { 
            color: var(--text-main); 
            background: rgba(255,255,255,0.02); 
        }

        .navbar-item.active { 
            color: var(--accent); 
        } 

        /* ==========================================
        HUB CENTRAL MODERNIZADO
        ========================================== */

        .navbar-item-hub { 
            position: relative; 
            top: -18px; 
            width: 58px; 
            height: 58px; 
            background-color: var(--accent);
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            box-shadow: 0 8px 24px rgba(223, 186, 77, 0.35);
            border: 4px solid var(--bg);
            transition: all 0.6s var(--premium-easing); /* Aumentei a duração */
        }

        .navbar-item-hub:hover { 
            transform: translateY(-3px) scale(1.05); 
            background-color: var(--accent); 
        }

        .navbar-item-hub:active { 
            transform: scale(0.92); 
        }

        /* ==========================================
        ÍCONES DA NAVBAR
        ========================================== */

        .navbar-icon { 
            width: 28px; 
            height: 28px; 
            object-fit: contain; 
            opacity: 0.6; 
            transition: all 0.6s var(--premium-easing); /* Aumentei a duração */ 
        }

        .navbar-item.active .navbar-icon { 
            opacity: 1; 
            filter: sepia(1) saturate(3) hue-rotate(5deg); 
        }

        .navbar-icon-hub { 
            width: 34px; 
            height: 34px; 
            object-fit: contain; 
            filter: brightness(0) invert(1); 
        }

/*=================NAVBAR INFERIOR=====================*/