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

    :root {
            --primary-color: #00D2F2;
            --dark-bg: #222000;
            --secondary-dark: #1a1a1a;
            --yellow: #FAD151;
            --font-family: 'Montserrat', sans-serif;
        }


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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-primary, #222);
            color: var(--text-primary, #fff);
        }

        .top-warning {
            background-color: var(--bg-secondary, #222);
            color: var(--text-primary, white);
            padding: 10px 0;
            text-align: center;
            font-size: 14px;
            border-bottom: 1px solid var(--border-color, #333);
        }

        .top-warning i {
            color: #ffc107;
        }

        /* 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: 6px;
            background: var(--bg-tertiary, rgba(255,255,255,0.1));
            color: var(--text-primary, #fff);
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            white-space: nowrap;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color, transparent);
        }
        
        .category-pill:hover, .category-pill:active {
            background: var(--primary-color);
            color: #003d52;
            border-color: var(--primary-color);
        }
        
        .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-primary, #222);
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .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: 25px;
            padding: 12px 50px 12px 20px;
            border: 2px solid gray;
        }

        .search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #222;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: var(--text-primary, white);
        }

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

        .header-links a {
            color: var(--text-primary, #222);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 18px;
        }

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

        .navbar-custom {
            background-color: white;
            padding: 0;
        }

        .navbar-custom .navbar-collapse {
            justify-content: center;
        }

        .navbar-custom .navbar-nav {
            justify-content: center;
            width: 100%;
        }

        .navbar-custom .nav-link {
            color: #222 !important;
            padding: 15px 20px;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .navbar-custom .nav-link:hover {
            background-color: var(--primary-color);
            color: var(--dark-bg) !important;
            text-decoration: underline;
            text-decoration-color: #000;
            text-underline-offset: 4px;
        }

        .promo-badge {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
        }

        .banner-section {
            position: relative;
            background: #1a1a2e;
            overflow: hidden;
            width: 100%;
        }

        .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(--dark-bg);
        }

        .features-section {
            background-color: #003d52;
            color: white;
            padding: 30px 0;
        }

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

        .feature-icon {
            font-size: 40px;
            color: var(--primary-color);
        }

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

        .category-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: var(--bg-tertiary, linear-gradient(145deg, #2a2a2a, #1f1f1f));
            border: 1px solid var(--border-color, rgba(255,255,255,0.1));
            border-radius: 16px;
            padding: 25px 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(0, 210, 242, 0.2);
        }

        .category-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), #0099b3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

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

        .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: 50px 0;
            background: var(--bg-primary, transparent);
        }

        .section-title {
            font-size: 32px;
            text-align: center;
            margin-bottom: 30px;
            color: var(--primary-color);
        }

        .product-card {
            background: var(--bg-card, white);
            border-radius: 10px;
            padding: 20px;
            box-shadow: var(--card-shadow, 0 2px 10px rgba(0,0,0,0.1));
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow-hover, 0 8px 25px rgba(0,0,0,0.15));
        }

        .product-image {
            width: calc(100% + 40px);
            margin-left: -20px;
            margin-top: -20px;
            height: 280px;
            background-color: var(--bg-secondary, #f8f9fa);
            margin-bottom: 15px;
            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: 10px;
            left: 10px;
            background-color: #ffc107;
            color: var(--dark-bg);
            padding: 8px 12px;
            border-radius: 50%;
            font-weight: bold;
            font-size: 14px;
        }

        .wishlist-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .product-title {
            font-size: 16px;
            margin-bottom: 10px;
            min-height: 40px;
            color: var(--text-primary, inherit);
        }
        
        .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;
        }

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

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

        .btn-primary-custom {
            background-color: var(--primary-color);
            border: none;
            padding: 12px;
            border-radius: 5px;
            color: white;
            font-weight: bold;
            width: 100%;
            margin-bottom: 10px;
        }

        .btn-add-cart {
            background: linear-gradient(135deg, var(--primary-color), #0099cc);
            border: none;
            padding: 12px;
            border-radius: 5px;
            color: white;
            font-weight: 600;
            width: 100%;
            margin-bottom: 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, #0099cc, #007399);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 210, 242, 0.3);
        }

        .btn-whatsapp {
            background-color: #FAD151;
            border: none;
            padding: 12px;
            border-radius: 5px;
            color: white;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        /* 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: 45px;
            height: 45px;
            background: var(--primary-color);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 210, 242, 0.4);
        }
        
        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: #0099b3;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 210, 242, 0.5);
        }
        
        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 18px;
            font-weight: bold;
            color: black;
        }
        
        .swiper-button-prev {
            left: 0;
        }
        
        .swiper-button-next {
            right: 0;
        }
        
        /* WhatsApp Button for Products */
        .btn-whatsapp-product {
            background-color: #25d366;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            color: white;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-whatsapp-product:hover {
            background-color: #128c48;
        }
        
        /* 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: 60px 0;
            background: var(--bg-secondary, linear-gradient(135deg, #1a1a2e 0%, #0a0a1a 100%));
        }
        
        .feedbacks-section .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--text-primary, #fff);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .feedbacks-section .section-title i {
            color: var(--primary-color);
        }
        
        .feedback-card {
            background: var(--bg-card, rgba(255,255,255,0.03));
            border: 1px solid var(--border-color, rgba(255,255,255,0.1));
            border-radius: 16px;
            padding: 25px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .feedback-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,210,242,0.1);
        }
        
        .feedback-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .feedback-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), #0099b3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            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: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            cursor: pointer;
            z-index: 1000;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), #0099b3);
            color: #fff;
            border: none;
            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, 210, 242, 0.3);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            background: linear-gradient(135deg, #0099b3, #007399);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 210, 242, 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-color: #1a2a4a;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: white;
            font-size: 10px;
            padding: 5px 10px;
        }

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

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

        .mobile-nav-item:hover {
            color: var(--yellow);
        }

        /* 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: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
            color: #fff;
            padding: 60px 0 20px;
            margin-top: 60px;
        }

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

        .footer-description {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: #000;
            transform: translateY(-3px);
        }

        .footer-title {
            color: var(--primary-color);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

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

        .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: 5px;
        }

        .footer-links i {
            font-size: 10px;
        }

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

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

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

        .footer-contact span {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-contact a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-divider {
            border-color: rgba(255,255,255,0.1);
            margin: 40px 0 20px;
        }

        .footer-bottom {
            text-align: center;
            color: rgba(255,255,255,0.5);
            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;
            }
        }