    @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;

    /* NOVO TEMA CLARO */
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;

    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;

    --border-color: #e5e7eb;

    --card-shadow: 0 2px 10px rgba(0,0,0,0.05);
    --card-shadow-hover: 0 8px 25px rgba(0,0,0,0.1);

    --dark-bg: #111; /* só pra não quebrar coisas antigas */
    --yellow: #FAD151;
}
        /* 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: #ffffff;

        }

        .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: #00D2F2(--old-price-color, #999);
            font-size: 14px;
        }

        .current-price {
            font-size: 24px;
            font-weight: bold;
            color: #00D2F2;
        }

        .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: #ffffff;
            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: #333;
            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;
            }
        }
        .top-warning-bar {
    background: #1a1a1a;
    color: #ccc;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.top-warning-bar i {
    color: #00D2F2;
}
.btn-add-cart {
    background: linear-gradient(135deg, #00D2F2, #0099cc);
    border: none;
    padding: 12px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #0099cc, #007399);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 242, 0.3);
}
.badge {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 6px;
}
#menuOverlay {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    z-index:998;
}

#menuOverlay {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:998;
}

#menuOverlay.active {
    opacity:1;
    visibility:visible;
}

#menuLateral {
    position: fixed;
    top:0;
    left:-320px;
    width:300px;
    height:100%;
    background:#0f172a;
    z-index:999;
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

/* TOPO */
.menu-top {
    display:flex;
    align-items:center;
    gap:10px;
    padding:15px;
    background:#111827;
}

.menu-avatar {
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

.status-online {
    color:#22c55e;
    font-size:12px;
}

/* BANNER */
.menu-banner {
    background:linear-gradient(135deg,#22c55e,#16a34a);
    margin:10px;
    padding:10px;
    border-radius:8px;
    text-align:center;
    font-weight:bold;
}

/* LINKS */
.menu-links {
    padding:10px;
}

.menu-links a {
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:0.2s;
}

.menu-links a:hover {
    background:#1e293b;
}

/* CATEGORIAS */
.menu-categorias {
    padding:10px;
    overflow-y:auto;
}

.menu-categorias a {
    display:block;
    padding:8px;
    color:#ccc;
    text-decoration:none;
    border-radius:6px;
}

.menu-categorias a:hover {
    background:#1e293b;
    color:white;
}

/* ATIVO */
/* FUNDO DA SEÇÃO */
.feedbacks-section {
    background: #f1f5f9; /* cinza claro igual da imagem */
    padding: 60px 0;
}

/* CARD */
.feedback-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

/* HOVER */
.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* AVATAR */
.feedback-avatar {
    width: 45px;
    height: 45px;
    background: #06b6d4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* NOME */
.feedback-card strong {
    color: #111827;
}

/* LOCAL */
.feedback-card small {
    color: #6b7280;
}

/* TEXTO */
.feedback-text {
    color: #4b5563;
    font-style: italic;
    margin-top: 10px;
}

/* ESTRELAS */
.feedback-stars i {
    color: #facc15;
}

/* DATA */
.feedback-card .text-muted {
    color: #9ca3af !important;
    font-size: 12px;
}

/* ===================== FOOTER FINAL ===================== */

.site-footer {
    background: #0f172a;
    padding: 60px 0 30px;
    color: #cbd5e1;
}

.footer-box {
    background: #111827;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #1f2937;
}

.site-footer h5 {
    color: #fff;
    margin-bottom: 15px;
}

.site-footer a {
    color: #38bdf8;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.cnpj-box {
    margin-top: 15px;
    background: #020617;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #334155;
}

.footer-bottom {
    color: #64748b;
    font-size: 14px;
}
body {
    background-color: #f8f9fa !important;
    color: #111827 !important;
}
/* =========================
   FORÇA TEMA CLARO GLOBAL
========================= */

body {
    background-color: #f8f9fa !important;
    color: #111827 !important;
}

/* REMOVE FUNDOS ESCUROS GERAIS */
section,
.container {
    background: transparent !important;
}

/* SEÇÕES PRINCIPAIS */
.products-section,
.categories-section,
.banner-section,
.navbar-mobile-categories,
.breadcrumb-section {
    background: #ffffff !important;
}

/* CARDS */
.product-card,
.category-card,
.feedback-card {
    background: #ffffff !important;
    border: 1px solid #e5e7eb;
}

/* IMAGENS PRODUTO */
.product-image {
    background: #f1f5f9 !important;
}

/* TEXTO GLOBAL */
h1, h2, h3, h4, h5, h6, p, span, a {
    color: #111827 !important;
}

/* LINKS */
a:hover {
    color: #00D2F2 !important;
}

/* NAVBAR */
.navbar-custom,
.main-header {
    background: #ffffff !important;
}

/* MENU MOBILE */
.mobile-bottom-nav {
    background: #ffffff !important;
}

/* BOTÕES */
.btn-add-cart {
    background: linear-gradient(135deg, #00D2F2, #0099cc);
    color: #fff !important;
}

/* FEEDBACKS */
.feedbacks-section {
    background: #f1f5f9 !important;
}

/* REMOVE BACKGROUNDS ESCUROS ANTIGOS */
.banner-section {
    background: #ffffff !important;
}

/* TOP BAR */
.top-warning-bar {
    background: #f1f5f9 !important;
    color: #111 !important;
    border-bottom: 1px solid #e5e7eb;
}

/* MENU LATERAL (opcional claro) */
#menuLateral {
    background: #ffffff !important;
}

.menu-top {
    background: #f1f5f9 !important;
}

.menu-links a,
.menu-categorias a {
    color: #111 !important;
}

.menu-links a:hover,
.menu-categorias a:hover {
    background: #e5e7eb !important;
}

/* FOOTER (mantive leve escuro elegante, se quiser claro me fala) */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
}
/* ================================
   CORREÇÃO DEFINITIVA BOOTSTRAP
================================ */

/* FUNDO GLOBAL */
body {
    background: #f8f9fa !important;
    color: #111827 !important;
}

/* HEADER */
header {
    background: #ffffff !important;
}

/* INPUT */
.form-control {
    background: #ffffff !important;
    color: #111827 !important;
    border: 1px solid #e5e7eb !important;
}

/* BOTÕES */
.btn {
    color: #111827 !important;
}

/* BOTÃO QUE ESTÁ QUEBRANDO */
.btn-outline-light {
    border: 1px solid #e5e7eb !important;
    color: #111827 !important;
    background: #ffffff !important;
}

/* REMOVE CLASSES ESCURAS DO BOOTSTRAP */
.bg-dark {
    background: #ffffff !important;
}

.text-white {
    color: #111827 !important;
}

/* BADGES */
.badge {
    color: #fff !important;
}

/* CONTAINER PRINCIPAL */
.container {
    background: transparent !important;
}

/* TITULOS */
h3 {
    color: #111827 !important;
}

/* SWIPER BACKGROUND */
.swiper {
    background: transparent !important;
}

/* CARDS */
.product-card {
    background: #ffffff !important;
    color: #111827 !important;
}

/* IMAGEM */
.product-card img {
    background: #f1f5f9 !important;
    border-radius: 8px;
}
.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffc107;
    color: #000;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-title {
    font-size: 16px;
    margin-top: 10px;
}

.product-title a {
    text-decoration: none;
    color: #111;
}

.product-price {
    margin-top: 8px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    display: block;
}

.current-price {
    font-weight: bold;
    color: #000;
    font-size: 18px;
}

/* BOTÕES */
.product-actions {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.btn-view {
    flex: 1;
    background: #111;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.btn-cart {
    flex: 1;
    background: #ffc107;
    color: #000;
    padding: 8px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
}
.swiper-slide {
    height: auto !important;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}