/* Reset básico e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif; 
    background-color: #ffffff;
    line-height: 1.6;
    padding-top: 132px; 
    transition: padding-top 0.4s ease;
}

/* --- HEADER DINÂMICO --- */
header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000; 
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Barra superior (popup) */
.top-bar {
    text-align: center;
    padding: 8px 20px;
    font-size: 0.75rem; 
    color: #555;
    font-weight: 400; 
    max-height: 50px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

/* Navegação Principal */
.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 30px;
    transition: padding 0.4s ease;
}

.logo img {
    max-height: 60px;
    transition: max-height 0.4s ease;
}

.main-nav nav a {
    text-decoration: none;
    color: #500100; 
    font-weight: 400; 
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}
.main-nav nav a:hover { opacity: 0.7; }
.main-nav nav ul { list-style: none; display: flex; gap: 35px; }

.nav-icons { display: flex; gap: 20px; }
.nav-icons a { color: #500100; font-size: 1.2rem; text-decoration: none; transition: opacity 0.3s ease; }
.nav-icons a:hover { opacity: 0.7; }

.hamburger-menu {
    display: none;
}

/* ========================================= */
/* --- AJUSTES DE VISIBILIDADE DESKTOP/MOBILE --- */
/* ========================================= */

/* Esconde o item de menu "Produtos >" que é SÓ para mobile no DESKTOP */
.mobile-only {
    display: none;
}

/* Esconde o PAINEL do submenu (a "sub-tela") no DESKTOP */
.mobile-submenu {
    display: none;
}

/* --- ESTADO DO HEADER APÓS ROLAGEM (.scrolled) --- */
header.scrolled .top-bar {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
}

header.scrolled .main-nav .container {
    padding: 10px 30px;
}

header.scrolled .logo img {
    max-height: 45px;
}


/* ======================================================= */
/* --- SEÇÕES DE IMAGEM (DESKTOP - VERSÃO FINAL) --- */
/* ======================================================= */

/* Estilo para a imagem DENTRO da seção */
.secao-imagem-fundo img {
    width: 100%; /* Imagem ocupa toda a largura da tela */
    height: auto; /* Altura se ajusta para manter a proporção perfeita */
    display: block; /* Remove margem inferior padrão de imagens */
}

/* Removemos as regras de altura específicas para cada ID no desktop */
#secao-1, #secao-2, #secao-3, #secao-4 {
    height: auto;
    /* Removemos o background daqui para ele ser controlado pela media query */
    background-image: none;
}

.area-branca { 
    background-color: #ffffff; 
}
.conteudo-interno { 
    max-width: 1300px; 
    margin: 0 auto; 
}

/* --- CARROSSEL DE PRODUTOS --- */
.product-carousel-section {
    padding: 60px 0;
}

.product-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 25px;
    scroll-snap-type: x mandatory;
}

.product-carousel::-webkit-scrollbar { display: none; }
.product-carousel { -ms-overflow-style: none; scrollbar-width: none; }

.product-card {
    flex: 0 0 270px;
    scroll-snap-align: start;
    text-align: left;
}
.product-card a { text-decoration: none; }
.product-card img {
    width: 100%;
    height: auto;
    background-color: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    margin-bottom: 15px;
}
.card-details { padding: 0 5px; }
.product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #500100;
    margin-bottom: 5px;
    min-height: 50px;
}
.product-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    color: #500100;
    margin-bottom: 10px;
}
.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #500100;
}

/* --- NAVEGAÇÃO DO CARROSSEL --- */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 25px;
    margin-bottom: 30px; /* VOLNEI ERA 15PX */
}

.carousel-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #500100;
    font-size: 0.7rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-btn:hover {
    background-color: #f0f0f0;
}

.page-indicator {
    margin: 0 15px;
    font-size: 0.7rem;
    color: #500100;
    font-weight: 500;
}

/* --- SEÇÃO PRODUTO EM DESTAQUE --- */
.featured-product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 25px;
    align-items: start;
}
.featured-product-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}
.featured-product-details .brand {
    font-size: 0.9rem;
    color: #500100;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.featured-product-details h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}
.price-box {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.price-box .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 15px;
    font-size: 1.1rem;
}
.price-box .current-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #500100;
    margin-right: 15px;
}
.promo-tag {
    background-color: #ff0400;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.options-group {
    margin-bottom: 20px;
}
.options-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}
.option-buttons {
    display: flex;
    gap: 10px;
}
.option-btn {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.option-btn.active {
    background-color: #500100;
    color: #fff;
    border-color: #500100;
}

.buy-button {
    display: block;
    width: 100%;
    background-color: #00b02f;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    margin: 30px 0 20px;
    animation: pulse 1.7s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.share-link, .details-link {
    display: block;
    text-align: center;
    color: #555;
    text-decoration: none;
    margin-top: 10px;
}
.share-link:hover, .details-link:hover {
    color: #500100;
}

/* --- BOTÃO WHATSAPP --- */
.whatsapp-button { 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    background-color: #25D366; 
    color: #fff; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 2rem; 
    text-decoration: none; 
    box-shadow: 2px 2px 8px rgba(0,0,0,0.25); 
    z-index: 999; 
    transition: transform 0.3s ease; 
}
.whatsapp-button:hover { 
    transform: scale(1.1); 
}

/* ========================================= */
/* ESTILOS DO RODAPÉ                         */
/* ========================================= */

footer {
    background-color: #500100;
    color: #ffffff;
    padding: 60px 25px 0 25px;
    text-align: left;
}

footer .footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-top > div {
    display: flex;
    flex-direction: column;
}

footer .footer-top h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

footer .footer-top a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: block;
}

footer .footer-top a:hover {
    color: #fff;
}

footer .social-icons-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-top: 8px;
}

footer .social-icons-grid a {
    font-size: 1.4rem;
}

footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
}

footer .footer-payment h4 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

footer .footer-payment img {
    max-width: 100%;
    height: auto;
}

footer .footer-seals img {
    max-height: 85px;
    margin: 0 10px;
}

footer .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}
footer .footer-copyright p {
    font-size: 0.8rem;
    color: #d0d0d0;
}

/* ========================================= */
/* --- ESTILOS DA PÁGINA DE PRODUTO ---      */
/* ========================================= */

/* --- BREADCRUMB --- */
.breadcrumb {
    padding: 20px 0;
    font-size: 0.8rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* Permite quebrar linha em telas pequenas */
}

.breadcrumb a {
    color: #500100;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    margin: 0 5px;
}

#back-button {
    background: none;
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: auto; /* Empurra o botão para a direita */
}

#back-button:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* --- GALERIA DE IMAGENS --- */
.product-page-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#main-product-image-container img {
    width: 100%;
    height: auto;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

#main-product-image-container img:hover {
    opacity: 0.9;
}

#extra-images-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.gallery-thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.gallery-thumbnail:hover, .gallery-thumbnail.active {
    border-color: #500100;
}

/* --- DESCRIÇÃO DO PRODUTO --- */
#product-description-container {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

#product-description-container h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

#product-description-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

#product-description-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

#product-description-list li:last-child {
    border-bottom: none;
}

/* ========================================= */
/* --- ESTILOS DO MODAL (LIGHTBOX) ---       */
/* ========================================= */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content-wrapper {
    position: relative;
    margin: auto;
    width: 80%;
    max-width: 700px;
}

.modal-content {
    width: 100%;
    height: auto;
    display: block;
}

.modal-close {
    position: absolute;
    top: -25px;
    right: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
}

.modal-prev, .modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: rgba(255, 255, 255, 0.733);
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.modal-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px; /* Adiciona um espaço acima do título */
}

/* ========================================= */
/* --- ESTILOS PARA PÁGINAS ESTÁTICAS ---    */
/* ========================================= */

.static-page-content {
    padding: 40px 0; /* Espaçamento interno */
    max-width: 800px; /* Largura máxima do texto para melhor leitura */
    margin: 0 auto;   /* Centraliza o bloco de texto */
    line-height: 1.8;
}

.static-page-content h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #500100;
    padding-bottom: 15px;
}

.static-page-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #444;
    margin-top: 40px;
    margin-bottom: 15px;
}

.static-page-content p {
    margin-bottom: 20px;
    color: #555;
}

.static-page-content a {
    color: #500100;
    font-weight: 500;
    text-decoration: none;
}

.static-page-content a:hover {
    text-decoration: underline;
}

.static-page-content .contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #500100;
}

/* SUBSTITUA O BLOCO DE ESTILOS DO DROPDOWN POR ESTE */

/* ========================================= */
/* --- ESTILOS DO MENU DROPDOWN (CORRIGIDO) -- */
/* ========================================= */
.main-nav nav ul li {
    position: relative;
}

.dropbtn .fa-chevron-down {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none; /* Escondido por padrão */
    position: absolute;
    background-color: #ffffff;
    min-width: 280px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 0 0 5px 5px;
    border-top: 2px solid #500100;
    padding: 15px;
    opacity: 0; /* Começa invisível para animação */
    visibility: hidden; /* Começa inacessível */
    transform: translateY(10px); /* Começa um pouco abaixo */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* Mostra o menu quando o mouse está sobre o item 'dropdown' */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1; /* Torna visível */
    visibility: visible; /* Torna acessível */
    transform: translateY(0); /* Move para a posição final */
}

.dropdown-header {
    font-weight: 600;
    color: #333;
    padding: 10px 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
}

.dropdown-header:not(:first-child) {
    margin-top: 15px;
}

.dropdown-content a {
    color: #555;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-transform: none;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 4px;
}

.dropdown-content a:hover {
    color: #500100;
    background-color: #f5f5f5;
}

.dropdown-content a.disabled-link {
    color: #aaa;
    cursor: not-allowed;
    pointer-events: none;
    background-color: transparent;
}

/* ========================================= */
/* --- ESTILOS DA PÁGINA DE CATEGORIA ---    */
/* ========================================= */
.category-page-header {
    padding: 40px 0;
    text-align: start;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.category-page-header h1 {
    font-size: 1.5rem;
    color: #500100;
    font-weight: 500;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Padrão 3 colunas */
    gap: 25px;
    padding-bottom: 60px;
}

/* Layout especial para a grade de acessórios */
.product-grid.acessorios-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Ajustes responsivos para as grades de produtos */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid.acessorios-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .product-grid.acessorios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* ========================================= */
/* --- RESPONSIVIDADE MOBILE ---             */
/* ========================================= */
@media (max-width: 768px) {
    
    body { 
        padding-top: 85px; 
    }

    /* --- Header Mobile --- */
    .main-nav nav,
    .hide-on-mobile { 
        display: none; 
    }
    .main-nav .container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 10px 20px;
    }
    .logo {
        grid-column: 2;
        justify-self: center;
    }
    .logo img { 
        max-height: 40px; 
    }
    header.scrolled .logo img { 
        max-height: 40px; 
    }
    .nav-icons {
        grid-column: 3;
        justify-self: end;
    }
    .hamburger-menu {
        display: block;
        background: none;
        border: none;
        color: #500100;
        font-size: 1.5rem;
        cursor: pointer;
        grid-column: 1;
        justify-self: start;
    }

    /* --- Seções Mobile (VERSÃO FINAL E CORRIGIDA) --- */

    /* Primeiro, escondemos as imagens de desktop no mobile */
    .secao-imagem-fundo img {
        display: none;
    }

    /* Agora, restauramos o comportamento de background 1:1 */
    .secao-imagem-fundo {
        width: 100%;
        height: 0;
        padding-bottom: 100%; /* Força a proporção 1:1 */
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

#secao-1 {
    margin-top: 85px; /* Espaço para o cabeçalho fixo, usando margem em vez de padding */
    background-image: url('imagens/Boss Grill Img 0 Mobile.png');
    height: 0;
    
}

#secao-2 {
    background-image: url('imagens/Boss Grill Img 1 Mobile.png');
}

#secao-3 {
    background-image: url('imagens/Boss Grill Img 2 Mobile.png');
}

#secao-4 {
    background-image: url('imagens/Boss Grill Img 3 Mobile.png');
}

    
    .area-branca .conteudo-interno {
        padding: 0 20px;
    }
    
    .carousel-nav {
        display: none;
    }

    .featured-product-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
    }
    
    .featured-product-details h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .price-box .current-price {
        font-size: 1.5rem;
    }
    
    .buy-button {
        font-size: 1rem;
        padding: 12px;
    }
    
    .share-link, .details-link {
        font-size: 0.9rem;
    }

    /* --- Rodapé Mobile --- */
    footer {
        text-align: center;
    }
    
    footer .footer-top {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    footer .social-icons-grid {
        justify-content: center;
    }

    /* --- Página de Produto Mobile --- */
    #extra-images-gallery {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 8px;
    }

    .gallery-thumbnail {
        height: 60px;
    }

    .option-buttons {
        flex-wrap: wrap;
    }

    .option-btn {
        padding: 8px 15px;
        margin-bottom: 8px;
    }

    #product-description-container {
        margin-top: 30px;
        padding-top: 15px;
    }

    .breadcrumb {
        padding: 15px 0;
        font-size: 0.7rem;
    }

    #back-button {
        padding: 6px 10px;
        font-size: 0.7rem;
        margin-left: 0; /* Remove o alinhamento à direita no mobile */
    }

    .modal-content-wrapper {
        width: 95%;
    }

    /* ... dentro de @media (max-width: 768px) { ... } */

    /* ========================================= */
    /* --- ESTILOS DO MENU MOBILE (HAMBÚRGUER) --- */
    /* ========================================= */

    /* Posição e aparência do menu dropdown */
    .main-nav nav {
        display: none; /* Mantém escondido por padrão */
        position: absolute;
        top: 100%; /* Posiciona logo abaixo do cabeçalho */
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        border-top: 1px solid #f0f0f0;
        
        /* Animação de abertura */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    /* Quando o menu estiver visível (classe adicionada pelo JS) */
    .main-nav nav.menu-visible {
        display: block;
        max-height: 500px; /* Um valor alto para permitir que o conteúdo apareça */
    }

    /* Itens do menu (agora em formato de lista vertical) */
    .main-nav nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .main-nav nav ul li {
        width: 100%;
        text-align: center;
    }

    .main-nav nav ul a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .main-nav nav ul li:last-child a {
        border-bottom: none;
    }

    /* ========================================= */
    /* --- ESTILOS DO SUB-MENU LATERAL MOBILE --- */
    /* ========================================= */

    /* Esconde o dropdown de desktop e mostra o gatilho do submenu no mobile */
    .dropdown {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .mobile-only a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* A sub-tela (escondida fora da tela à direita por padrão) */
    .mobile-submenu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 1100; /* Acima do menu principal */
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        overflow-y: auto;
    }

    /* Classe que o JS vai adicionar para mostrar o menu */
    .mobile-submenu.submenu-visible {
        transform: translateX(0);
    }

    .submenu-header {
        display: flex;
        align-items: center;
        padding: 0 20px;
        height: 85px; /* Mesma altura do cabeçalho mobile */
        border-bottom: 1px solid #f0f0f0;
    }

    .submenu-back-btn {
        background: none;
        border: none;
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        cursor: pointer;
    }
    .submenu-back-btn i {
        margin-right: 10px;
    }

    .submenu-content {
        padding: 20px;
    }

    /* Reutiliza os estilos do dropdown para a lista de categorias */
    .submenu-content .dropdown-header { margin-top: 20px; }
    .submenu-content .dropdown-header:first-child { margin-top: 0; }
    .submenu-content a {
        display: block;
        padding: 12px 10px;
        text-decoration: none;
        color: #555;
        font-size: 1rem;
        border-bottom: 1px solid #f5f5f5;
    }
    .submenu-content a.disabled-link { color: #aaa; pointer-events: none; }
}