
        :root {
            --lilac-primary: #9C27B0;
            --lilac-secondary: #BA68C8;
            --lilac-light: #E1BEE7;
            --gold-primary: #FFD700;
            --gold-secondary: #F9D423;
            --gold-dark: #D4AF37;
            --black: #212121;
            --white: #FFFFFF;
            --gray-light: #F5F5F5;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--gray-light);
            color: var(--black);
            overflow-x: hidden;
        }

        /* Layout do catálogo */
        .magazine {
            max-width: 1200px;
            margin: 0 auto;
            background-color: var(--white);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        /* Capa */
        .cover {
            position: relative;
            height: 80vh;
            min-height: 600px;
            background: linear-gradient(135deg, var(--lilac-light), var(--white));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            border-bottom: 15px solid var(--gold-primary);
        }

        .cover::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            height: 20px;
            background: repeating-linear-gradient(
                45deg,
                var(--gold-primary),
                var(--gold-primary) 10px,
                var(--lilac-primary) 10px,
                var(--lilac-primary) 20px
            );
        }

        .logo {
            max-width: 500px;
            margin-bottom: 2rem;
            z-index: 1;
        }

        .logo img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 5px 15px rgba(156, 39, 176, 0.3));
        }

        .cover-title {
            font-size: 4rem;
            color: var(--lilac-primary);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            font-weight: 700;
        }

        .cover-subtitle {
            font-size: 1.8rem;
            color: var(--gold-dark);
            font-style: italic;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .issue {
            font-size: 1.2rem;
            color: var(--lilac-primary);
            border-top: 2px solid var(--gold-primary);
            border-bottom: 2px solid var(--gold-primary);
            display: inline-block;
            padding: 0.5rem 2rem;
            margin-top: 1rem;
        }

        /* Conteúdo */
        .content {
            padding: 3rem 2rem;
        }

        .section-title {
            text-align: center;
            color: var(--lilac-primary);
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--lilac-primary), var(--gold-primary));
        }

        /* Banner de coleção */
        .collection-banner {
            width: 100%;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .collection-banner img {
            width: 100%;
            max-width: 1000px;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 3px solid var(--gold-primary);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        /* Cards de produtos */
        .product-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.2s ease;
            position: relative;
            border: 1px solid var(--lilac-light);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--lilac-primary), var(--gold-primary));
            color: var(--white);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 3;
        }

        /* Contêiner de imagens do produto com carrossel */
        .product-image-container {
            width: 100%;
            height: 250px;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--gold-primary);
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .product-image.active {
            opacity: 1;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-category {
            color: var(--lilac-primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .product-name {
            font-size: 1.3rem;
            color: var(--black);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .product-description {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1.2rem;
            line-height: 1.5;
        }

        .product-price {
            font-size: 1.4rem;
            color: var(--lilac-primary);
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .product-price .old-price {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
        }

        .product-code {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 0.5rem;
        }

        /* Rodapé */
        footer {
            background: linear-gradient(135deg, var(--lilac-primary), var(--gold-primary));
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 15px solid var(--gold-dark);
            position: relative;
        }

        footer::before {
            content: "";
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 20px;
            background: repeating-linear-gradient(
                45deg,
                var(--lilac-primary),
                var(--lilac-primary) 10px,
                var(--gold-primary) 10px,
                var(--gold-primary) 20px
            );
        }

        .footer-logo {
            max-width: 200px;
            margin: 0 auto 1.5rem;
        }

        .footer-logo img {
            width: 100%;
            height: auto;
            filter: brightness(0) invert(1);
        }

        .footer-text {
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-item i {
            font-size: 1.2rem;
        }

        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .cover {
                height: auto;
                min-height: 500px;
                padding: 4rem 2rem;
            }
            
            .cover-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .cover-title {
                font-size: 2.5rem;
            }
            
            .cover-subtitle {
                font-size: 1.4rem;
            }
            
            .logo {
                max-width: 300px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .cover {
                min-height: 400px;
                padding: 3rem 1.5rem;
            }
            
            .cover-title {
                font-size: 2rem;
            }
            
            .cover-subtitle {
                font-size: 1.2rem;
            }
            
            .issue {
                font-size: 1rem;
                padding: 0.3rem 1.5rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
        }