* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #05C7F2;
            --gold-light: #5DDCF7;
            --gold-dark: #049DD9;
            --black: #000000;
            --black-light: #1a1a1a;
            --black-lighter: #2d2d2d;
            --gray-dark: #404040;
            --gray: #666666;
            --gray-light: #999999;
            --white: #ffffff;
            --gradient-gold: linear-gradient(135deg, #049DD9 0%, #05C7F2 50%, #049DD9 100%);
            --gradient-black: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            --gradient-gold-radial: radial-gradient(circle, #05C7F2 0%, #5DDCF7 100%);
            --shadow-gold: 0 4px 20px rgba(4, 157, 217, 0.3);
            --shadow-gold-lg: 0 10px 40px rgba(4, 157, 217, 0.4);
            --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.5);
            --shadow-dark-lg: 0 10px 40px rgba(0, 0, 0, 0.7);
        }

        :root {
            --announcement-height: 44px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: var(--announcement-height);
        }

        /* Announcement Bar */
        .announcement-bar {
            background: linear-gradient(90deg, #049DD9 0%, #05C7F2 50%, #049DD9 100%);
            overflow: hidden;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: var(--announcement-height);
            z-index: 1002;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .announcement-bar.hidden {
            transform: translateY(-100%);
            opacity: 0;
        }

        .announcement-wrapper {
            display: flex;
            width: fit-content;
            animation: scroll-infinite 60s linear infinite;
        }

        .announcement-bar:hover .announcement-wrapper {
            animation-play-state: paused;
        }

        .announcement-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        .announcement-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0 2.5rem;
            font-weight: 800;
            font-size: 0.9rem;
            color: #000000;
            letter-spacing: 0.5px;
            cursor: pointer;
        }

        .announcement-item strong {
            font-weight: 900;
            background: rgba(0,0,0,0.15);
            padding: 2px 10px;
            border-radius: 4px;
            letter-spacing: 0.1em;
        }

        .announcement-sep {
            color: rgba(0,0,0,0.4);
            font-size: 1.2rem;
            padding: 0 1rem;
        }

        @keyframes scroll-infinite {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @media (max-width: 768px) {
            :root { --announcement-height: 38px; }
            body { padding-top: 38px; }
            .announcement-item { font-size: 0.78rem; padding: 0 1.5rem; }
            .announcement-wrapper { animation-duration: 45s; }
        }

        /* Header Styles */
        .header {
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(10px);
            position: sticky;
            top: var(--announcement-height);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #000, var(--gold), #000);
            background-size: 200% 100%;
            animation: goldShine 2s linear infinite;
            box-shadow: 0 0 15px rgba(4, 157, 217, 0.5), 0 0 5px var(--gold);
            z-index: 1001;
        }

        .header.scrolled {
            box-shadow: var(--shadow-gold-lg);
            background: rgba(0, 0, 0, 1);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 0 10px rgba(4, 157, 217, 0.5));
        }

        .logo img {
            width: 200px;
            height: 60px;
            object-fit: cover;
        }

        .logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 15px rgba(4, 157, 217, 0.8));
        }

        /* Search Bar */
        .search-container {
            flex: 1;
            max-width: 600px;
            position: relative;
        }

        .search-form {
            position: relative;
            width: 100%;
        }

        .search-input {
            width: 100%;
            padding: 0.875rem 3rem 0.875rem 1.25rem;
            background: var(--black-light);
            border: 2px solid var(--gray-dark);
            border-radius: 50px;
            color: var(--white);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .search-input::placeholder {
            color: var(--gray);
        }

        .search-input:focus {
            background: var(--black-lighter);
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(4, 157, 217, 0.1);
        }

        .search-btn {
            position: absolute;
            right: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gradient-gold);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: var(--shadow-gold);
        }

        .search-icon {
            width: 18px;
            height: 18px;
            stroke: var(--black);
            stroke-width: 2.5;
        }

        /* Cart Button */
        .cart-btn {
            position: relative;
            background: var(--gradient-gold);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .cart-btn:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-gold-lg);
        }

        .cart-icon {
            width: 24px;
            height: 24px;
            stroke: var(--black);
            stroke-width: 2;
            fill: none;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--black);
            color: var(--gold);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.5rem;
            border-radius: 50px;
            min-width: 20px;
            text-align: center;
            border: 2px solid var(--gold);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-5px) rotate(-5deg);
            }

            75% {
                transform: translateX(5px) rotate(5deg);
            }
        }

        .cart-btn.shake {
            animation: shake 0.5s ease;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-icon {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            stroke-width: 2;
        }

        /* Category Navigation */
        .nav-bar {
            border-top: 1px solid rgba(4, 157, 217, 0.2);
            padding: 1rem 0;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .category-link {
            color: var(--gray-light);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .category-link:hover {
            color: var(--gold);
        }

        .category-link.active {
            color: var(--gold);
            font-weight: 700;
        }

        .category-icon-small {
            width: 20px;
            height: 20px;
            object-fit: contain;
            flex-shrink: 0;
            /* Evita que o ícone encolha */
        }

        /* Menu Mobile Dropdown (Tipo Accordion/Collapse) */
        .mobile-nav-wrapper {
            max-height: 0;
            overflow: hidden;
            background: var(--black-light);
            transition: max-height 0.4s ease-in-out;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .mobile-nav-wrapper.active {
            max-height: 500px;
        }

        .mobile-nav-content {
            padding: 1rem 1.5rem;
            display: flex;
            flex-direction: column;
        }

        .mobile-nav-item {
            color: var(--white);
            text-decoration: none;
            font-size: 1rem;
            padding: 0.875rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            gap: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }

        .mobile-nav-item:last-child {
            border-bottom: none;
        }

        .mobile-nav-item:hover {
            color: var(--gold);
            padding-left: 8px;
            background: rgba(255, 255, 255, 0.02);
        }

        @media (max-width: 768px) {
            .nav-bar {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
                order: 0;
            }
        }


        /* Main Content */
        main {
            min-height: calc(100vh - 80px);
        }

        /* Footer */
        .footer {
            background: #050505;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
            color: #fff;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #000, var(--gold), #000);
            background-size: 200% 100%;
            animation: goldShine 2s linear infinite;
            box-shadow: 0 0 15px rgba(4, 157, 217, 0.5), 0 0 5px var(--gold);
            z-index: 10;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: auto 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
            align-items: start;
        }

        .footer-separator {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #000, var(--gold), #000);
            background-size: 200% 100%;
            animation: goldShine 2s linear infinite;
            box-shadow: 0 0 15px rgba(4, 157, 217, 0.5), 0 0 5px var(--gold);
            margin: 2rem 0;
            border-radius: 0;
            opacity: 1;
            position: relative;
            z-index: 10;
        }

        @keyframes goldShine {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        .footer-column h3 {
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 0.6rem;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-column a:hover {
            color: var(--gold);
        }

        /* Newsletter */
        .newsletter-text {
            color: #ccc;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            background: #111;
            border: 1px solid #333;
            color: #fff;
            padding: 0.8rem;
            border-radius: 4px;
            flex: 1;
            font-size: 0.9rem;
        }

        .newsletter-btn {
            background: var(--gold);
            color: #000;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .newsletter-btn:hover {
            opacity: 0.9;
        }

        /* Footer Bottom */


        .footer-content-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .footer-warning {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            color: #888;
            font-size: 0.8rem;
            line-height: 1.5;
            max-width: 700px;
        }

        .footer-warning svg {
            flex-shrink: 0;
            color: var(--gold);
        }

        .payment-methods {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.5rem;
        }

        .payment-methods span {
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .payment-icons {
            display: flex;
            gap: 0.5rem;
        }

        .payment-icons img,
        .payment-icons svg {
            height: 25px;
            border-radius: 2px;
        }

        .footer-seals {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .footer-seals img {
            height: 55px;
            opacity: 0.8;
            transition: all 0.3s;
        }

        .footer-seals img:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .copyright {
            text-align: center;
            color: #555;
            font-size: 0.8rem;
            margin-top: 3rem;
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: left;
                justify-items: start;
            }

            .footer-column {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 768px) {
            .footer-content-row {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-warning {
                flex-direction: column;
                align-items: center;
            }

            .payment-methods {
                align-items: center;
            }
        }



        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
                display: grid;
                grid-template-columns: auto 1fr auto;
                grid-template-rows: auto auto;
                gap: 1rem;
                align-items: center;
            }

            .mobile-menu-btn {
                grid-column: 1;
                grid-row: 1;
                z-index: 20;
                display: block;
            }

            .logo {
                grid-column: 2;
                grid-row: 1;
                justify-self: center;
                z-index: 10;
            }

            .logo img {
                width: 190px;
                height: auto;
                max-height: 70px;
            }

            .cart-btn {
                grid-column: 3;
                grid-row: 1;
                width: 45px;
                height: 45px;
            }

            .search-container {
                grid-column: 1 / -1;
                grid-row: 2;
            }
        }
        }

        @media (max-width: 480px) {
            .header-container {
                flex-wrap: wrap;
            }

            .logo img {
                width: 190px;
                /* Mantém tamanho maior mesmo em telas pequenas */
                height: auto;
                max-height: 60px;
            }

            .search-input {
                padding: 0.75rem 2.75rem 0.75rem 1rem;
                font-size: 0.9rem;
            }

            .search-btn {
                width: 36px;
                height: 36px;
            }

            .cart-btn {
                width: 42px;
                height: 42px;
            }
        }

        /* Utility Classes */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
        }

        /* Live Search Styles */
        #search-results {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #111;
            border: 1px solid var(--gold);
            border-top: none;
            border-radius: 0 0 15px 15px;
            z-index: 1001;
            max-height: 400px;
            overflow-y: auto;
            display: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-top: 5px;
        }

        #search-results.active {
            display: block;
        }

        .search-result-item {
            display: flex;
            align-items: center;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: background 0.2s;
            gap: 1rem;
        }

        .search-result-item:hover {
            background: rgba(4, 157, 217, 0.1);
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-image {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 6px;
        }

        .search-result-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .search-result-title {
            font-weight: 600;
            color: var(--white);
            font-size: 0.9rem;
        }

        .search-result-price {
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: bold;
        }

        .no-results {
            padding: 1rem;
            text-align: center;
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Scrollbar personalizada */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #050505;
        }
        ::-webkit-scrollbar-thumb {
            background-image: linear-gradient(to bottom, #049DD9 0%, #05C7F2 50%, #049DD9 100%);
            background-color: #049DD9;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background-image: linear-gradient(to bottom, #05C7F2 0%, #7ee8fa 50%, #05C7F2 100%);
        }
        * {
            scrollbar-width: thin;
            scrollbar-color: #05C7F2 #050505;
        }

/* --- block --- */

/* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 1;
            overflow: hidden;
            margin-bottom: 4rem;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Desktop: banner no mesmo container do destaque */
        @media (min-width: 769px) {
            .hero {
                max-width: 1400px;
                margin-left: auto;
                margin-right: auto;
                padding: 0 2rem;
                margin-top: 1.5rem;
                margin-bottom: 4rem;
                box-sizing: border-box;
            }

            .hero-video {
                border-radius: 8px;
            }
        }

        /* Featured Carousel Section */
        .featured-section {
            background: var(--black);
            margin-bottom: 0rem;
        }

        .featured-carousel-wrapper {
            position: relative;
        }

        .carousel-arrow {
            display: none;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 32px;
            height: 68px;
            background: none;
            border: none;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            padding: 0;
            transition: transform 0.2s;
        }

        /* trilha vertical */
        .carousel-arrow::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom,
                    transparent 0%,
                    var(--gold) 30%,
                    var(--gold) 70%,
                    transparent 100%);
            opacity: 0.3;
            transition: opacity 0.3s;
        }

        .carousel-arrow-prev::before {
            right: 0;
            left: auto;
        }

        .carousel-arrow-next::before {
            left: 0;
            right: auto;
        }

        /* ponto brilhante central na trilha */
        .carousel-arrow::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 6px 2px var(--gold);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .carousel-arrow-prev::after {
            right: -1.5px;
            left: auto;
        }

        .carousel-arrow-next::after {
            left: -1.5px;
            right: auto;
        }

        .carousel-arrow:hover {
            transform: translateY(-50%) scale(1.05);
        }

        .carousel-arrow:hover::before {
            opacity: 1;
        }

        .carousel-arrow:hover::after {
            opacity: 1;
        }

        .carousel-arrow:hover svg {
            opacity: 1;
            filter: drop-shadow(0 0 6px var(--gold)) drop-shadow(0 0 14px rgba(5, 199, 242, 0.6));
        }

        .carousel-arrow svg {
            width: 24px;
            height: 24px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0.5;
            filter: drop-shadow(0 0 3px var(--gold));
            transition: opacity 0.3s, filter 0.3s;
            position: relative;
            z-index: 1;
        }

        .carousel-arrow-prev {
            left: -16px;
        }

        .carousel-arrow-next {
            right: -16px;
        }

        @media (min-width: 769px) {
            .carousel-arrow {
                display: flex;
            }
        }

        .featured-carousel {
            padding: 40px 10px;
            /* Aumentado padding superior para evitar cortes */
            overflow-x: auto;
            overflow-y: visible;
            /* Permitir que elementos saiam verticalmente */
            position: relative;
            width: 100%;
            -webkit-overflow-scrolling: touch;
            cursor: grab;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }


        .featured-carousel::-webkit-scrollbar {
            display: none;
        }

        .featured-carousel:active {
            cursor: grabbing;
        }

        .featured-carousel-track {
            display: flex;
            gap: 2rem;
            width: fit-content;
        }

        .featured-card {
            min-width: 285px;
            max-width: 285px;
            flex-shrink: 0;
            user-select: none;
        }

        .featured-card img {
            ` pointer-events: none;
        }

        /* Products Section */
        .products-section {
            padding: 2rem 0 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: left;
            margin-bottom: 3rem;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100%;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(to right, var(--gold), transparent);
            margin-top: 0.5rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        /* Product Card */
        .product-card {
            background: var(--black-light);
            border: 2px solid var(--gold);
            border-radius: 16px;
            overflow: visible;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            text-decoration: none;
            display: block;
            position: relative;
            min-width: 285px;
            max-width: 285px;
        }

        .product-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
            border-color: #3b82f6;
        }

        .product-image-container {
            position: relative;
            width: 280px;
            height: 365px;
            background: var(--black);
            overflow: visible;
            /* Permite que o badge saia */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem;
            box-sizing: border-box;
            border-radius: 14px 14px 0 0;
        }

        .custom-badge {
            position: absolute;
            top: -15px;
            right: -40px;
            width: 190px !important;
            height: auto !important;
            max-width: none !important;
            max-height: none !important;
            z-index: 20;
            pointer-events: none;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
            image-rendering: auto;
            animation: promo-pulse 2.4s ease-in-out infinite;
            transform-origin: center;
        }

        @keyframes promo-pulse {
            0%, 100% {
                transform: rotate(-2deg) scale(1);
                filter: drop-shadow(0 4px 8px rgba(5, 199, 242, 0.4));
            }
            50% {
                transform: rotate(-2deg) scale(1.06);
                filter: drop-shadow(0 6px 16px rgba(5, 199, 242, 0.7));
            }
        }

        .product-image {
            max-width: 100%;
            max-height: 100%;
            width: 100%;
            height: auto;
            object-fit: contain;
            object-position: center;
            transition: transform 0.6s ease;
            border-radius: 12px 12px 0 0;
            /* Arredonda a imagem para não vazar */
        }

        @media (max-width: 768px) {
            .product-image-container {
                width: 100%;
                height: 300px;
            }
        }

        /* Produto fora de estoque */
        .product-card.out-of-stock .product-image {
            filter: blur(8px) grayscale(70%);
            opacity: 0.5;
        }

        .out-of-stock-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: transparent;
            color: #ef4444;
            padding: 0;
            font-size: 1.2rem;
            /* Reduzido de 1.5rem */
            font-weight: 900;
            z-index: 10;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            white-space: nowrap;
            /* Força uma linha */
            text-align: center;
            width: 100%;
        }

        .discount-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #ef4444;
            color: var(--white);
            padding: 0.5rem 0.75rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 700;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
        }

        .product-info {
            padding: 1.25rem;
        }

        .product-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: visible;
            min-height: 1.25rem;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .stars {
            display: flex;
            gap: 0.125rem;
        }

        .star {
            color: var(--gold);
            font-size: 0.95rem;
        }

        .star.half {
            position: relative;
            color: var(--gray-dark);
        }

        .star.half::before {
            content: '★';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold);
            width: 50%;
            overflow: hidden;
        }

        .rating-text {
            font-size: 0.8rem;
            color: var(--gray);
        }

        .product-prices {
            display: flex;
            flex-direction: row;
            align-items: baseline;
            gap: 0.75rem;
        }

        .price-row {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .old-price {
            font-size: 0.95rem;
            color: var(--gray);
            text-decoration: line-through;
            order: 2;
        }

        .current-price {
            font-size: 1.75rem;
            font-weight: 800;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            order: 1;
        }

        /* Category Cards */
        .categories-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .category-card {
            flex: 1 1 450px;
            max-width: 600px;
            position: relative;
            height: 320px;
            /* Altura ajustada para o estilo clean */
            border-radius: 24px;
            overflow: visible;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-decoration: none;
            display: block;
            background: #111;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 215, 0, 0.5);
        }

        .category-banner {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.7s ease;
        }

        .category-card:hover .category-banner {
            transform: scale(1.05);
        }

        /* Gradiente suave na parte inferior para leitura */
        .category-overlay-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 70%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
            pointer-events: none;
        }

        .category-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            z-index: 2;
        }

        .category-header-group {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .category-icon-wrapper {
            background: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .category-card:hover .category-icon-wrapper {
            transform: scale(1.1);
        }

        .category-icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .category-text-group {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .category-name {
            font-size: 1.75rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0;
            line-height: 1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .category-action {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            font-weight: 500;
            margin: 0;
        }

        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
        }

        .empty-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            opacity: 0.3;
        }

        .empty-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--gray-light);
        }

        .empty-text {
            font-size: 1.1rem;
            color: var(--gray);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }

            .products-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
                padding: 0 0.5rem;
            }

            .categories-grid {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .category-card {
                flex: 1 1 100%;
                max-width: 100%;
                height: 220px;
                display: grid;
                grid-template-rows: 1fr;
                grid-template-columns: 1fr;
                overflow: visible;
            }

            .category-banner {
                grid-row: 1 / -1;
                grid-column: 1 / -1;
                position: relative;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: 1;
            }

            .category-overlay-gradient {
                grid-row: 1 / -1;
                grid-column: 1 / -1;
                position: relative;
                width: 100%;
                height: 100%;
                z-index: 2;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
            }

            .category-content {
                grid-row: 1 / -1;
                grid-column: 1 / -1;
                align-self: end;
                padding: 1.5rem;
                z-index: 3;
                position: relative;
                width: 100%;
            }

            .category-name {
                font-size: 1.25rem;
            }

            .category-icon-wrapper {
                width: 50px;
                height: 50px;
            }

            .category-icon {
                width: 30px;
                height: 30px;
            }

            .product-card {
                min-width: 0;
                max-width: 100%;
                width: 100%;
            }

            .product-image-container {
                width: 100%;
                height: auto;
                aspect-ratio: 280/365;
            }

            .product-info {
                padding: 1rem;
            }

            .product-name {
                font-size: 1rem;
            }

            .current-price {
                font-size: 1.5rem;
            }

            .product-rating {
                margin-bottom: 0.5rem;
                font-size: 0.75rem;
            }

            .stars {
                font-size: 0.85rem;
            }

            .rating-text {
                font-size: 0.7rem;
            }

            .product-prices {
                gap: 0.25rem;
            }

            .old-price {
                font-size: 0.8rem;
            }

            .featured-card {
                min-width: calc(50vw - -20px);
                max-width: calc(50vw - -30px);
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Instagram Section Styles */
        .instagram-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .instagram-header .section-title {
            text-align: center;
            display: block;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .instagram-header .section-title::after {
            width: 100%;
            background: linear-gradient(to right, var(--gold), transparent);
        }

        .instagram-title {
            margin-bottom: 1rem;
            display: block;
        }

        .instagram-text {
            font-size: 1.15rem;
            color: var(--gray-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .instagram-banner {
            max-width: 600px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .instagram-title {
                font-size: 1.5rem !important;
            }

            .instagram-banner {
                max-width: 100%;
            }
        }

        /* Stories Widget */
        .stories-section {
            padding: 2rem 0 1rem;
            background: var(--black);
        }

        .stories-title {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stories-container {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            padding: 0 2rem;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .stories-container::-webkit-scrollbar {
            display: none;
        }

        .story-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            text-decoration: none;
            flex-shrink: 0;
        }

        .story-item:hover {
            transform: translateY(-5px);
        }

        .story-circle {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            padding: 3px;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            position: relative;
        }

        .story-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid var(--black);
            background: var(--black-light);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            position: relative;
        }

        .story-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 32px;
            height: 32px;
            fill: white;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
            z-index: 2;
        }

        .story-title {
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Video Modal */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .video-modal.active {
            display: flex;
            opacity: 1;
        }

        .video-content-wrapper {
            position: relative;
            width: 90%;
            max-width: 1000px;
            aspect-ratio: 16/9;
            box-shadow: 0 0 50px rgba(255, 215, 0, 0.1);
            border-radius: 12px;
            overflow: visible;
            background: black;
        }

        .close-modal-btn {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            border: none;
            background: none;
            cursor: pointer;
            padding: 0.5rem;
            line-height: 1;
            transition: transform 0.3s;
        }

        .close-modal-btn:hover {
            transform: scale(1.1);
            color: var(--gold);
        }

        @media (max-width: 768px) {
            .stories-title {
                font-size: 1.25rem;
            }

            .story-circle {
                width: 75px;
                height: 75px;
            }

            .video-content-wrapper {
                width: 100%;
                border-radius: 0;
            }

            .close-modal-btn {
                top: -50px;
                right: 10px;
            }
        }

        /* Video Section */
        .video-section {
            padding: 0rem 0;
            background: var(--black);
        }

        .video-section .section-title {
            text-align: center;
            display: block;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .video-section .section-title::after {
            width: 100%;
            background: linear-gradient(to right, var(--gold), transparent);
        }

        .video-container {
            max-width: 300px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: visible;
            border: 2px solid var(--gold);
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
        }
      	
      	.section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-top: 0.5rem;
}

        .video-wrapper {
            position: relative;
            width: 100%;
            background: var(--black-light);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        @media (max-width: 768px) {
            .video-section {
                padding: 0rem 0;
            }

            .video-container {
                max-width: 90%;
                border-radius: 12px;
            }
        }

/* --- block --- */

.product-comments {
        margin-top: 4rem;
    }

    .product-comments h2 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 3rem;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
        position: relative;
    }

    .product-comments h2::after {
        content: '';
        display: block;
        width: 100%;
        height: 4px;
        border-radius: 2px;
        background: linear-gradient(to right, var(--gold), transparent);
        margin-top: 0.5rem;
    }

    .comments-swiper {
        overflow: hidden;
        width: 100%;
    }

    .comments-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .comments-swiper .swiper-slide {
        width: 260px;
        height: auto;
        display: flex;
    }

    @property --angle-blue {
        syntax: '<angle>';
        initial-value: 0deg;
        inherits: false;
    }

    @keyframes spin-border-blue {
        to { --angle-blue: 360deg; }
    }

    .comment-item {
        position: relative;
        background: #0a0e14;
        border-radius: 16px;
        padding: 1.25rem 1.5rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        overflow: hidden;
        isolation: isolate;
    }

    .comment-item::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 18px;
        background: conic-gradient(
            from var(--angle-blue, 0deg),
            transparent 0deg,
            transparent 60deg,
            #049DD9 80deg,
            #5DDCF7 95deg,
            #05C7F2 110deg,
            #049DD9 130deg,
            transparent 160deg,
            transparent 360deg
        );
        z-index: -1;
        animation: spin-border-blue 3s linear infinite;
    }

    .comment-item::after {
        content: '';
        position: absolute;
        inset: 2px;
        border-radius: 14px;
        background: #0a0e14;
        z-index: -1;
    }

    .comment-item .shimmer {
        position: absolute;
        inset: 0;
        border-radius: 16px;
        background: linear-gradient(
            105deg,
            transparent 40%,
            rgba(4, 157, 217, 0.08) 48%,
            rgba(93, 220, 247, 0.12) 50%,
            rgba(4, 157, 217, 0.08) 52%,
            transparent 60%
        );
        background-size: 200% 100%;
        animation: shimmer-slide-blue 4s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
    }

    @keyframes shimmer-slide-blue {
        0%   { background-position: 200% center; }
        100% { background-position: -200% center; }
    }

    .comment-item:hover .user-name {
        animation: glitch-blue 0.4s steps(2) 1;
    }

    @keyframes glitch-blue {
        0%   { text-shadow: 2px 0 #05C7F2, -2px 0 #049DD9; clip-path: inset(0 0 80% 0); }
        25%  { text-shadow: -2px 0 #5DDCF7,  2px 0 #05C7F2; clip-path: inset(20% 0 60% 0); }
        50%  { text-shadow: 2px 0 #049DD9,  -2px 0 #5DDCF7; clip-path: inset(50% 0 20% 0); }
        75%  { text-shadow: -1px 0 #05C7F2,  1px 0 #049DD9; clip-path: inset(70% 0 5% 0); }
        100% { text-shadow: none; clip-path: none; }
    }

    .comment-header {
        margin-bottom: 0.75rem;
        position: relative;
        z-index: 1;
    }

    .user-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .user-name {
        font-weight: 700;
        color: var(--gold);
        font-size: 0.95rem;
        letter-spacing: 0.03em;
    }

    .review-stars {
        display: flex;
        gap: 2px;
    }

    .review-stars .star {
        font-size: 0.85rem;
        color: var(--gold);
        filter: drop-shadow(0 0 3px rgba(5, 199, 242, 0.7));
    }

    .review-stars .star.empty {
        color: rgba(5, 199, 242, 0.15);
        filter: none;
    }

    .review-stars .star.half {
        position: relative;
        display: inline-block;
        color: rgba(5, 199, 242, 0.15);
        filter: none;
    }

    .review-stars .star.half::before {
        content: '★';
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        overflow: hidden;
        color: var(--gold);
        filter: drop-shadow(0 0 3px rgba(5, 199, 242, 0.7));
    }

    .comment-text {
        color: rgba(255,255,255,0.7);
        font-size: 0.875rem;
        line-height: 1.6;
        margin: 0;
        position: relative;
        z-index: 1;
    }

/* --- block --- */

/* Título da seção FAQ: degradê dourado, maiúsculas, estilo como about */
        .faq-section-title {
            text-align: center;
            margin-bottom: 3rem;
            margin-top: 0;
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Título de cada pergunta: degradê dourado e sempre maiúsculo no front */
        .faq-question {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
            outline: none;
        }

        .faq-question-text {
            text-transform: uppercase;
            font-size: 1.1rem;
            font-weight: 600;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Estilos para rich text dentro das respostas do FAQ */
        .prose-faq strong {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .prose-faq em {
            font-style: italic;
        }

        .prose-faq a {
            color: var(--gold);
            text-decoration: underline;
        }

        .prose-faq ul,
        .prose-faq ol {
            padding-left: 1.5rem;
            margin: 0.5rem 0;
        }

        .prose-faq li {
            margin-bottom: 0.25rem;
        }

        .prose-faq h2,
        .prose-faq h3 {
            color: #fff;
            font-weight: 700;
            margin: 0.75rem 0 0.25rem;
        }

        .prose-faq blockquote {
            border-left: 3px solid var(--gold);
            padding-left: 1rem;
            color: #999;
        }

        .prose-faq hr {
            border-color: rgba(255, 255, 255, 0.1);
            margin: 0.75rem 0;
        }

/* --- block --- */

.floating-social-btn {
            position: fixed;
            bottom: 95px;
            right: 20px;
            width: 60px;
            height: 60px;
            z-index: 9999;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 0 20px #05C7F2, 0 0 0 2px #049DD9;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(5, 199, 242, 0.2) 0%, rgba(4, 157, 217, 0.5) 100%);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .floating-social-btn img {
            width: 105%;
            height: 105%;
            object-fit: contain;
            transition: transform 0.5s ease;
            filter: drop-shadow(0 0 5px rgba(4, 157, 217, 0.8));
        }

        /* Efeito de Ondas (Pulse Gamer - Gold) */
        .floating-social-btn::before,
        .floating-social-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid rgba(4, 157, 217, 0.8);
            opacity: 0;
            z-index: -1;
            animation: pulse-ring 2.5s infinite;
        }

        .floating-social-btn::after {
            animation-delay: 0.8s;
        }

        @keyframes pulse-ring {
            0% {
                width: 100%;
                height: 100%;
                opacity: 0.8;
                border-width: 3px;
            }

            100% {
                width: 250%;
                height: 250%;
                opacity: 0;
                border-width: 0px;
            }
        }

        .floating-social-btn:hover {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(5, 199, 242, 0.3) 0%, rgba(4, 157, 217, 0.3) 100%);
            box-shadow: 0 0 35px rgba(4, 157, 217, 0.8), 0 0 0 3px #049DD9;
        }

        .floating-social-btn:hover img {
            transform: rotate(15deg) scale(1.1);
            filter: drop-shadow(0 0 10px #049DD9);
        }

        /* Ajuste Mobile */
        @media (max-width: 768px) {
            .floating-social-btn {
                bottom: 85px;
                right: 15px;
                width: 52px;
                height: 52px;
            }
        }