    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

    :root {
            --primary-color: #1DB954;
            --primary-hover: #1ed760;
            --dark-bg: #121212;
            --secondary-dark: #181818;
            --accent-green: #1DB954;
            --font-family: 'Inter', 'Montserrat', sans-serif;
        }


        * {
          font-family: 'Inter', 'Montserrat', sans-serif;
        }

        body {
            font-family: 'Inter', 'Montserrat', sans-serif;
            background-color: var(--bg-primary, #121212);
            color: var(--text-primary, #fff);
        }

        .top-warning {
            background: var(--primary-color);
            color: #000;
            padding: 10px 0;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .top-warning i {
            color: #000;
            margin-right: 5px;
        }

        /* Navbar Mobile Categories */
        .navbar-mobile-categories {
            background: var(--bg-secondary, #1a1a1a);
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color, #333);
            overflow: hidden;
        }
        
        .categories-scroll {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 0 15px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .categories-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .category-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-tertiary, #282828);
            color: #fff;
            padding: 10px 18px;
            border-radius: 25px;
            text-decoration: none;
            white-space: nowrap;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color, #333);
        }
        
        .category-pill:hover, .category-pill:active {
            background: var(--primary-color);
            color: #000;
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
        }
        
        .category-pill i {
            font-size: 14px;
        }

        /* Breadcrumb Section */
        .breadcrumb-section {
            background: var(--bg-secondary, #1a1a1a);
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color, #333);
        }

        .breadcrumb {
            background: transparent;
        }

        .breadcrumb-item a {
            color: var(--text-secondary, rgba(255,255,255,0.7));
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-item a:hover {
            color: var(--primary-color);
        }

        .breadcrumb-item.active {
            color: var(--primary-color);
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--text-muted, rgba(255,255,255,0.5));
        }

        .main-header {
            background-color: var(--bg-navbar, #0a0a0a);
            padding: 18px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            border-bottom: 1px solid var(--border-color, #282828);
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--dark-bg);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background-color: var(--dark-bg);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            font-size: 24px;
            font-weight: bold;
        }

        .search-bar {
            position: relative;
        }

        .search-bar input {
            border-radius: 30px;
            padding: 12px 55px 12px 25px;
            border: none;
            background: var(--bg-tertiary, #282828);
            color: #fff;
            transition: all 0.3s ease;
        }

        .search-bar input:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--primary-color);
            background: #333;
        }

        .search-bar input::placeholder {
            color: var(--text-muted, #727272);
        }

        .search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: #000;
            transition: all 0.3s ease;
        }

        .search-bar button:hover {
            background: var(--primary-hover);
            transform: translateY(-50%) scale(1.05);
        }

        .header-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .header-links a {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .header-links a:hover {
            color: var(--primary-color);
        }

        .navbar-custom {
            background-color: var(--bg-secondary, #181818);
            padding: 0;
            border-bottom: 1px solid var(--border-color, #282828);
        }

        .navbar-custom .navbar-collapse {
            justify-content: flex-start;
        }

        .navbar-custom .navbar-nav {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            width: 100%;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-color) var(--bg-tertiary);
            padding: 5px 0;
            cursor: grab;
            user-select: none;
        }

        .navbar-custom .navbar-nav:active {
            cursor: grabbing;
        }

        .navbar-custom .navbar-nav::-webkit-scrollbar {
            height: 4px;
        }

        .navbar-custom .navbar-nav::-webkit-scrollbar-track {
            background: var(--bg-tertiary);
        }

        .navbar-custom .navbar-nav::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 2px;
        }

        .navbar-custom .nav-item {
            flex-shrink: 0;
        }

        .navbar-custom .nav-link {
            color: #fff !important;
            padding: 12px 18px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
            border-radius: 8px;
            margin: 0 3px;
        }

        .navbar-custom .nav-link:hover {
            background-color: var(--primary-color);
            color: #000 !important;
        }

        .navbar-custom .nav-link i {
            font-size: 14px;
        }

        .promo-badge {
            background: var(--gradient-primary);
            color: #000;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            border-radius: 8px;
        }

        .banner-section {
            position: relative;
            background: var(--bg-secondary, #181818);
            overflow: hidden;
            width: 100%;
            z-index: 1;
        }

        .banner-section .carousel,
        .banner-section .carousel-inner,
        .banner-section .carousel-item {
            width: 100%;
        }

        .banner-img {
            width: 100%;
            height: auto;
            display: block;
        }

        .banner-content {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-placeholder {
            text-align: center;
            color: var(--dark-bg);
        }

        .banner-placeholder h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        /* Estilização dos controles do carrossel */
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            opacity: 0.8;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            padding: 20px;
            background-size: 50%;
        }

        /* Estilização dos indicadores (bolinhas) */
        .carousel-indicators {
            margin-bottom: 20px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.4);
            border: 2px solid white;
            margin: 0 5px;
        }

        .carousel-indicators button.active {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .features-section {
            background: linear-gradient(135deg, #1DB954 0%, #169c46 100%);
            color: #000;
            padding: 35px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-icon {
            font-size: 42px;
            color: #000;
        }

        .feature-item strong {
            font-weight: 700;
        }

        /* Categories Section */
        .categories-section {
            padding: 60px 0;
            background: var(--bg-secondary, #181818);
        }

        .category-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: var(--gradient-card);
            border: 1px solid var(--border-color, #282828);
            border-radius: 20px;
            padding: 30px 20px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(29, 185, 84, 0.25);
            background: linear-gradient(180deg, #333 0%, #282828 100%);
        }

        .category-icon {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
        }

        .category-icon i {
            font-size: 32px;
            color: #000;
        }

        .category-name {
            color: var(--text-primary, white);
            font-size: 14px;
            font-weight: 600;
            text-align: center;
        }

        .category-card:hover .category-name {
            color: var(--primary-color);
        }

        .products-section {
            padding: 60px 0;
            background: var(--bg-primary, transparent);
        }

        .section-title {
            font-size: 24px;
            text-align: center;
            margin-bottom: 35px;
            color: var(--text-primary, #fff);
            font-weight: 700;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .section-title a:hover {
            color: var(--primary-color);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            margin: 12px auto 0;
            border-radius: 2px;
        }

        .product-card {
            background: var(--bg-card, #1e1e1e);
            border-radius: 16px;
            padding: 0;
            box-shadow: var(--card-shadow, 0 4px 20px rgba(0,0,0,0.4));
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            overflow: hidden;
            border: 1px solid var(--border-color, #282828);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--card-shadow-hover, 0 12px 35px rgba(29,185,84,0.2));
            border-color: var(--primary-color);
        }

        .product-image {
            width: 100%;
            margin-left: 0;
            margin-top: 0;
            height: 280px;
            background-color: var(--bg-secondary, #181818);
            margin-bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .discount-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-color);
            color: #000;
            padding: 8px 14px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 13px;
            box-shadow: 0 4px 15px rgba(29, 185, 84, 0.4);
            z-index: 5;
        }

        .wishlist-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            background-color: rgba(0,0,0,0.6);
            border: none;
            border-radius: 50%;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #fff;
            transition: all 0.3s ease;
        }

        .wishlist-btn:hover {
            background-color: var(--primary-color);
            color: #000;
            transform: scale(1.1);
        }

        .product-title {
            font-size: 15px;
            margin-bottom: 12px;
            min-height: 45px;
            color: var(--text-primary, inherit);
            font-weight: 600;
            line-height: 1.4;
            padding: 15px 15px 0;
        }
        
        .product-title a {
            color: var(--text-primary, inherit);
            text-decoration: none;
        }
        
        .product-title a:hover {
            color: var(--primary-color);
        }

        .product-price {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 15px;
            padding: 0 15px;
        }

        .old-price {
            text-decoration: line-through;
            color: var(--old-price-color, #727272);
            font-size: 13px;
        }

        .current-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--price-color, var(--primary-color));
        }

        .btn-primary-custom {
            background: var(--primary-color);
            border: none;
            padding: 12px;
            border-radius: 25px;
            color: #000;
            font-weight: 700;
            width: calc(100% - 30px);
            margin: 0 15px 10px;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(29, 185, 84, 0.4);
        }

        .btn-add-cart {
            background: var(--gradient-primary);
            border: none;
            padding: 12px;
            border-radius: 25px;
            color: #000;
            font-weight: 700;
            width: calc(100% - 30px);
            margin: 0 15px 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-add-cart:hover {
            background: linear-gradient(135deg, #1ed760 0%, #1DB954 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(29, 185, 84, 0.4);
        }

        .btn-whatsapp {
            background: transparent;
            border: 2px solid var(--primary-color);
            padding: 10px;
            border-radius: 25px;
            color: var(--primary-color);
            width: calc(100% - 30px);
            margin: 0 15px 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .btn-whatsapp:hover {
            background: var(--primary-color);
            color: #000;
        }
        
        /* Products Carousel Styles */
        .products-carousel-wrapper {
            position: relative;
            padding: 0 50px;
        }
        
        .products-carousel-wrapper .swiper {
            padding: 10px 5px 20px;
        }
        
        .products-carousel-wrapper .swiper-slide {
            height: auto;
        }
        
        .products-carousel-wrapper .swiper-slide .product-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .products-carousel-wrapper .product-title {
            flex-grow: 1;
        }
        
        .products-carousel-wrapper .product-title a {
            color: inherit;
            text-decoration: none;
        }
        
        .products-carousel-wrapper .product-title a:hover {
            color: var(--primary-color);
        }
        
        /* Carousel Navigation Arrows */
        .swiper-button-prev,
        .swiper-button-next {
            width: 50px;
            height: 50px;
            background: var(--bg-tertiary, #282828);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: 1px solid var(--border-color, #333);
        }
        
        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: var(--primary-color);
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(29, 185, 84, 0.4);
            border-color: var(--primary-color);
        }
        
        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 18px;
            font-weight: bold;
            color: #fff;
        }

        .swiper-button-prev:hover::after,
        .swiper-button-next:hover::after {
            color: #000;
        }
        
        .swiper-button-prev {
            left: 0;
        }
        
        .swiper-button-next {
            right: 0;
        }
        
        /* WhatsApp Button for Products */
        .btn-whatsapp-product {
            background: transparent;
            border: 2px solid var(--primary-color);
            padding: 10px 15px;
            border-radius: 25px;
            color: var(--primary-color);
            width: calc(100% - 30px);
            margin: 0 15px 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-whatsapp-product:hover {
            background: var(--primary-color);
            color: #000;
            box-shadow: 0 5px 20px rgba(29, 185, 84, 0.3);
        }
        
        /* Mobile carousel adjustments */
        @media (max-width: 767px) {
            .products-carousel-wrapper {
                padding: 0 35px;
            }
            
            .swiper-button-prev,
            .swiper-button-next {
                width: 35px;
                height: 35px;
            }
            
            .swiper-button-prev::after,
            .swiper-button-next::after {
                color: black;
                font-size: 14px;
            }
            
            .product-card {
                padding: 15px;
            }
            
            .product-image {
                width: calc(100% + 30px);
                margin-left: -15px;
                margin-top: -15px;
                height: 220px;
            }
            
            .current-price {
                font-size: 20px;
            }
        }

        /* Feedbacks Section */
        .feedbacks-section {
            padding: 70px 0;
            background: var(--gradient-dark);
        }
        
        .feedbacks-section .section-title {
            text-align: center;
            margin-bottom: 45px;
            color: var(--text-primary, #fff);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .feedbacks-section .section-title i {
            color: var(--primary-color);
            font-size: 28px;
        }
        
        .feedback-card {
            background: var(--bg-card, #1e1e1e);
            border: 1px solid var(--border-color, #282828);
            border-radius: 20px;
            padding: 28px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .feedback-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(29, 185, 84, 0.15);
        }
        
        .feedback-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 18px;
        }
        
        .feedback-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            color: #000;
            flex-shrink: 0;
        }
        
        .feedback-info h6 {
            color: var(--text-primary, #fff);
            margin: 0 0 3px;
            font-size: 1rem;
            font-weight: 600;
        }
        
        .feedback-location {
            display: block;
            color: var(--text-muted, rgba(255,255,255,0.5));
            font-size: 0.8rem;
            margin-bottom: 5px;
        }
        
        .feedback-stars i {
            margin-right: 2px;
        }
        
        .feedback-text {
            color: var(--text-secondary, rgba(255,255,255,0.7));
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .feedback-date {
            color: var(--text-muted, rgba(255,255,255,0.4));
            font-size: 0.8rem;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: var(--primary-color);
            color: #000;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 6px 25px rgba(29, 185, 84, 0.5);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 35px rgba(29, 185, 84, 0.6);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 25px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--bg-tertiary, #282828);
            color: #fff;
            border: 1px solid var(--border-color, #333);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
        }
        
        @media (max-width: 991px) {
            .back-to-top {
                bottom: 85px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-navbar, #0a0a0a);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 12px 0;
            z-index: 1000;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
            border-top: 1px solid var(--border-color, #282828);
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-muted, #727272);
            font-size: 10px;
            padding: 5px 10px;
            transition: all 0.3s ease;
        }

        .mobile-nav-item i {
            font-size: 22px;
            margin-bottom: 4px;
        }

        .mobile-nav-item span {
            font-size: 10px;
            font-weight: 500;
        }

        .mobile-nav-item:hover,
        .mobile-nav-item.active {
            color: var(--primary-color);
        }

        /* Logo responsive */
        .logo-img {
            height: 120px;
        }

        @media (max-width: 991px) {
            .logo-img {
                height: 50px;
            }

            .main-header {
                padding: 10px 0;
            }

            .search-bar input {
                padding: 8px 45px 8px 15px;
                font-size: 14px;
            }

            .search-bar button {
                width: 35px;
                height: 35px;
            }

            body {
                padding-bottom: 70px;
            }
        }

        @media (max-width: 768px) {
            .banner-section {
                height: auto;
            }

            .banner-img {
                height: auto;
                min-height: 150px;
                object-fit: cover;
            }

            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
            }

            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                padding: 12px;
                background-size: 60%;
            }

            .carousel-indicators {
                margin-bottom: 10px;
            }

            .carousel-indicators button {
                width: 8px;
                height: 8px;
            }

            .banner-placeholder h1 {
                font-size: 32px;
            }

            .product-image {
                height: 200px;
            }
        }

        /* ===================== FOOTER ===================== */
        .site-footer {
            background: var(--bg-footer, #0a0a0a);
            color: #fff;
            padding: 70px 0 25px;
            margin-top: 70px;
            border-top: 1px solid var(--border-color, #282828);
        }

        .footer-logo-img {
            max-width: 150px;
            margin-bottom: 25px;
        }

        .footer-description {
            color: var(--text-secondary, #b3b3b3);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--bg-tertiary, #282828);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid var(--border-color, #333);
        }

        .social-link:hover {
            background: var(--primary-color);
            color: #000;
            transform: translateY(-4px);
            border-color: var(--primary-color);
            box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
        }

        .footer-title {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 28px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 45px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 8px;
        }

        .footer-links i {
            font-size: 10px;
            color: var(--primary-color);
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact li {
            display: flex;
            gap: 15px;
            margin-bottom: 22px;
            align-items: flex-start;
        }

        .footer-contact i {
            color: var(--primary-color);
            font-size: 22px;
            margin-top: 3px;
        }

        .footer-contact span {
            color: var(--text-secondary, #b3b3b3);
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-contact a {
            color: var(--text-secondary, #b3b3b3);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
            color: var(--primary-color);
        }

        .footer-divider {
            border-color: var(--border-color, #282828);
            margin: 45px 0 25px;
        }

        .footer-bottom {
            text-align: center;
            color: var(--text-muted, #727272);
            font-size: 13px;
        }

        @media (max-width: 991px) {
            .site-footer {
                padding-bottom: 80px;
            }
        }

        @media (max-width: 768px) {
            .site-footer {
                text-align: center;
            }

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

            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-links a {
                justify-content: center;
            }

            .footer-contact li {
                flex-direction: column;
                align-items: center;
                gap: 8px;
                text-align: center;
            }
        }

        /* ===========================
           MEGA MENU - DESKTOP
           =========================== */
        .mega-menu-nav {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: visible !important;
            width: 100%;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-color) var(--bg-tertiary);
            padding: 5px 0;
            position: static;
        }

        .mega-menu-nav::-webkit-scrollbar {
            height: 4px;
        }

        .mega-menu-nav::-webkit-scrollbar-track {
            background: var(--bg-tertiary);
        }

        .mega-menu-nav::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 2px;
        }

        /* Container da navbar precisa permitir overflow do dropdown */
        .navbar-custom {
            overflow: visible !important;
            position: relative;
            z-index: 1050;
        }

        .navbar-custom .container-fluid {
            overflow: visible !important;
            position: relative;
        }

        .navbar-mobile-categories {
            position: relative;
            z-index: 1050;
        }

        .mega-menu-nav {
            overflow: visible !important;
        }

        .mega-dropdown {
            position: relative !important;
        }

        .mega-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 280px;
            max-width: 400px;
            background: #181818;
            border: 1px solid #333;
            border-top: 3px solid var(--primary-color);
            border-radius: 0 0 12px 12px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.8);
            z-index: 99999 !important;
            animation: megaFadeIn 0.2s ease;
        }

        @keyframes megaFadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .mega-dropdown:hover > .mega-dropdown-menu {
            display: block !important;
        }

        .mega-dropdown-inner {
            padding: 20px 25px;
        }

        .mega-dropdown-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5px 15px;
        }

        .mega-dropdown-item {
            display: block;
            padding: 10px 14px;
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .mega-dropdown-item:hover {
            background: rgba(29, 185, 84, 0.15);
            color: var(--primary-color);
            padding-left: 18px;
        }

        /* ===========================
           MOBILE MENU - ACCORDION
           =========================== */
        .mobile-menu-toggle {
            display: flex;
            align-items: center;
            padding: 14px 20px;
            background: var(--bg-secondary, #1a1a1a);
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            border-bottom: 1px solid var(--border-color, #333);
            user-select: none;
        }

        .mobile-menu-toggle .bi-chevron-down {
            transition: transform 0.3s ease;
        }

        .mobile-menu-toggle.active .bi-chevron-down {
            transform: rotate(180deg);
        }

        .mobile-menu-content {
            background: var(--bg-tertiary, #222);
            max-height: 60vh;
            overflow-y: auto;
        }

        .mobile-cat-group {
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .mobile-cat-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0;
        }

        .mobile-cat-link {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-grow: 1;
            padding: 14px 10px 14px 20px;
        }

        .mobile-cat-link:hover {
            color: var(--primary-color);
        }

        .mobile-cat-toggle {
            background: transparent;
            border: none;
            color: #888;
            padding: 14px 20px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .mobile-cat-toggle:hover {
            color: var(--primary-color);
            background: rgba(29, 185, 84, 0.1);
        }

        .mobile-cat-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .mobile-cat-header.active .mobile-cat-arrow {
            transform: rotate(180deg);
            color: var(--primary-color);
        }

        .mobile-sub-list {
            background: rgba(0,0,0,0.2);
            padding: 5px 0;
        }

        .mobile-sub-item {
            display: block;
            padding: 10px 20px 10px 48px;
            color: #bbb;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.2s ease;
            border-left: 2px solid transparent;
        }

        .mobile-sub-item:hover {
            color: var(--primary-color);
            background: rgba(29, 185, 84, 0.08);
            border-left-color: var(--primary-color);
        }