        :root {
            --brand-primary: #D9A5B3;       /* Rosa Viejo del logo CA */
            --brand-secondary: #6B4F55;     /* Malva oscuro para elegancia */
            --brand-accent: #EED6D3;        /* Rubor suave */
            --brand-light: #FFF9FA;         /* Fondo off-white rosado */
            --brand-text: #4A3B3E;          /* Texto principal cenizo */
            --whatsapp-color: #25d366;      
            --border-radius: 12px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--brand-text);
            background-color: #ffffff;
            scroll-behavior: smooth;
        }

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

        /* Utilidades de Marca */
        .bg-brand-primary { background-color: var(--brand-primary); }
        .text-brand-primary { color: var(--brand-primary); }
        .border-brand-primary { border-color: var(--brand-primary); }
        
        /* Componente: Tarjeta de Producto (Minimalista) */
        .product-card {
            border-radius: var(--border-radius);
            background: white;
            border: 2px solid #f3e8ea;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: all 0.3s ease;
        }

        /* EFECTO ZOOM PARA LAS IMÁGENES */
        .product-card .image-container img {
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: zoom-in;
        }

        .product-card:hover .image-container img {
            transform: scale(1.15); /* Zoom hacia adentro */
        }

        /* Componente: Botón WhatsApp Flotante */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--whatsapp-color);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.05);
        }

        header {
            backdrop-filter: blur(15px);
            background-color: rgba(255, 255, 255, 0.9);
        }

        .category-pill {
            transition: all 0.3s ease;
            border: 1px solid #eee1e3;
            color: var(--brand-secondary);
        }

        .category-pill.active, .category-pill:hover {
            background-color: var(--brand-primary);
            color: white;
            border-color: var(--brand-primary);
        }

        .nosotros-img-container::after {
            content: '';
            position: absolute;
            top: 15px;
            right: -15px;
            width: 100%;
            height: 100%;
            border: 1px solid var(--brand-primary);
            border-radius: var(--border-radius);
            z-index: -1;
        }

        .btn-consultar {
            background-color: var(--brand-primary);
            color: white;
            transition: all 0.3s ease;
            letter-spacing: 0.05em;
        }
        
        .btn-consultar:hover {
            background-color: var(--brand-secondary);
        }

        /* ESTILOS DEL MODAL DE IMAGEN */
        #imageModal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background-color: rgba(74, 59, 62, 0.95); /* brand-text con opacidad */
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #imageModal.active {
            display: flex;
            opacity: 1;
        }

        #modalImage {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 8px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        #imageModal.active #modalImage {
            transform: scale(1);
        }

        .close-modal {
            position: absolute;
            top: 2rem;
            right: 2rem;
            color: white;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .close-modal:hover {
            transform: scale(1.1);
        }