/* Estilos para o menu de categorias responsivo */
.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.category-tabs ul {
    display: flex;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.category-tabs li {
    flex: 1;
    text-align: center;
}

.category-tabs a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    position: relative;
}

.category-tabs a i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-tabs a.active {
    color: var(--color-green);
    background-color: rgba(63, 111, 80, 0.05);
}

.category-tabs a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-green);
}

/* Estilos para o mobile-nav */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.8rem;
    transition: color var(--transition-fast);
}

.mobile-nav a i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.mobile-nav a.active {
    color: var(--color-green);
}

/* Media query para dispositivos móveis - ocultar texto no menu de categorias */
@media screen and (max-width: 768px) {
    .category-tabs a span {
        display: none !important;
    }
    
    .category-tabs a i {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .category-tabs a {
        padding: 0.75rem 0.5rem;
    }
}

/* Adicionar regra inline para garantir que o texto seja ocultado em mobile */
@media screen and (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}
