/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}

.d-none {
    display: none !important;
}

.required:after {
    content: ' *';
    color: red;
}

/* Navigation */
.nav-link {
    position: relative;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    /* muda aqui */
    left: 0;
    background-color: #8A6D3B;
    transition: width 0.3s;
}


.nav-link:hover:after {
    width: 100%;
}

/* Product Tabs */
.product-tab {
    padding: 0.75rem 1.5rem;
    margin: 0 0.25rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.product-tab:hover {
    color: #8A6D3B;
}

.product-tab.active {
    color: #8A6D3B;
    border-bottom-color: #8A6D3B;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.product-overlay {
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 80px;
    /* Position above WhatsApp button */
    width: 40px;
    height: 40px;
    background-color: #8A6D3B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 40;
}

.back-to-top:hover {
    background-color: #7a613a;
}

/* Animation on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Category Card */
.category-card {
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        height: auto !important;
    }

    .gallery-grid>div {
        height: 300px !important;
    }
}

/* Banner Slider Indicators */
.slider-indicators {
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    cursor: pointer;
}

.slider-indicators button.active,
.slider-indicators button:hover {
    background-color: #fff;
    transform: scale(1.1);
}