        /* Paleta de Cores Customizada */
        :root {
            --branco: #ffffff;
            --rose: #d4a3a3; /* Tom de rosé elegante */
            --rose-escuro: #b57b7b;
            --dourado: #c5a059;
            --texto-escuro: #333333;
            --fundo-claro: #fcf9f9;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--branco);
            color: var(--texto-escuro);
        }

        h1, h2, h3, .logo {
            font-family: 'Playfair Display', serif;
        }

        /* Topbar e Navbar */
        .navbar {
            padding: 1rem 2rem;
            background-color: var(--branco);
            border-bottom: 1px solid #f0f0f0;
        }
        
        .navbar-brand {
            color: var(--dourado);
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .nav-link {
            color: var(--texto-escuro);
            font-size: 0.85rem;
            text-transform: uppercase;
            font-weight: 600;
            margin: 0 5px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--dourado);
        }

        .nav-link.outlet {
            color: var(--rose-escuro);
        }

        .nav-icons i {
            font-size: 1.2rem;
            margin-left: 15px;
            color: var(--texto-escuro);
            cursor: pointer;
            transition: color 0.3s;
        }

        .nav-icons i:hover {
            color: var(--rose);
        }

        /* Hero Banner */
        .hero-banner {
            background-color: #f4ece8; /* Fundo bege/nude similar à imagem */
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content h2 {
            font-size: 3rem;
            color: var(--texto-escuro);
            margin-bottom: 1rem;
        }

        .hero-content .cupom {
            border: 2px solid var(--texto-escuro);
            padding: 10px 30px;
            display: inline-block;
            font-weight: bold;
            letter-spacing: 2px;
            margin-top: 15px;
        }

        /* Categorias Circulares */
        .categorias-scroll {
            display: flex;
            overflow-x: auto;
            gap: 30px;
            padding: 40px 20px;
            justify-content: center;
        }

        .categoria-item {
            text-align: center;
            min-width: 100px;
            cursor: pointer;
        }

        .categoria-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .categoria-item:hover .categoria-img {
            border-color: var(--dourado);
            transform: scale(1.05);
        }

        .categoria-titulo {
            margin-top: 10px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Vitrine de Produtos (Cards) */
        .section-title {
            text-align: center;
            font-weight: 700;
            font-size: 1.5rem;
            margin: 50px 0 30px;
            text-transform: uppercase;
        }

        .product-card {
            border: none;
            border-radius: 0;
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-img-wrapper {
            position: relative;
            overflow: hidden;
        }

        .product-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .btn-wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            color: var(--rose);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .product-title {
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 15px;
            height: 40px; /* Alinhamento uniforme */
            overflow: hidden;
        }

        .product-price {
            color: var(--rose-escuro);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .btn-comprar {
            width: 100%;
            background-color: #000;
            color: var(--branco);
            border: none;
            padding: 12px;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: background-color 0.3s, color 0.3s;
        }

        .btn-comprar:hover {
            background-color: var(--dourado);
            color: var(--branco);
        }

        /* Ocultar scrollbar nas categorias mantendo funcionalidade */
        .categorias-scroll::-webkit-scrollbar {
            display: none;
        }
        .categorias-scroll {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Botão Flutuante WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25D366; /* Verde oficial do WhatsApp */
            color: var(--branco);
            border-radius: 50%;
            text-align: center;
            font-size: 35px;
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background-color: #20b858;
            color: var(--branco);
            transform: scale(1.1);
            box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
        }

        /* Ajuste para telas menores (mobile) */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 28px;
            }
        }

        /* --- Rodapé (Footer) --- */
        .footer {
            background-color: var(--fundo-claro);
            padding-top: 60px;
            color: var(--texto-escuro);
        }

        .footer-title {
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 25px;
            letter-spacing: 1px;
            font-family: 'Montserrat', sans-serif;
        }

        .footer-link {
            color: #666666;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            font-size: 0.85rem;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .footer-link:hover {
            color: var(--dourado);
            padding-left: 5px; /* Leve efeito de movimento ao passar o mouse */
        }

        .footer-text {
            color: #666666;
            font-size: 0.85rem;
            margin-bottom: 8px;
        }

        /* Redes Sociais e Apps */
        .social-icons {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background-color: var(--texto-escuro);
            color: var(--branco);
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--rose);
            transform: translateY(-3px);
        }

        .app-icons i {
            font-size: 2rem;
            color: var(--texto-escuro);
            margin-right: 15px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .app-icons i:hover {
            color: var(--dourado);
        }

        /* Formas de Pagamento */
        .payment-methods {
            border-top: 1px solid #ebebeb;
            padding: 30px 0;
            text-align: center;
            margin-top: 40px;
        }

        .payment-methods i {
            font-size: 2rem;
            color: #444;
            margin: 0 10px;
            vertical-align: middle;
        }

        /* Barra Inferior (Copyright) */
        .footer-bottom {
            background-color: var(--branco);
            padding: 20px 0;
            text-align: center;
            font-size: 0.75rem;
            color: #888;
        }

        /* --- Formulario de Newsletter --- */
        .newsletter-form .form-control {
            border: 1px solid #ddd;
            font-size: 0.85rem;
            padding: 8px 12px;
        }
        
        .newsletter-form .form-control:focus {
            border-color: var(--dourado);
            /* O shadow-none no HTML já remove o glow padrão azul do Bootstrap, 
               mas garantimos a borda dourada aqui */
        }

        .btn-newsletter {
            background-color: var(--texto-escuro);
            color: var(--branco);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            border: 1px solid var(--texto-escuro);
            padding: 8px 15px;
            transition: all 0.3s ease;
        }

        .btn-newsletter:hover {
            background-color: var(--dourado);
            border-color: var(--dourado);
            color: var(--branco);
        }