        :root {
            --brand-primary: #f472b6;       /* Rosa Pastel Vibrante */
            --brand-secondary: #831843;     /* Bordó/Rosa Oscuro */
            --brand-accent: #fef08a;        /* Oro Suave / Crema */
            --brand-light: #fdf2f8;         /* Rosa muy suave */
            --brand-text: #500724;          /* Texto principal oscuro */
            --whatsapp-color: #25d366;      /* Color oficial WhatsApp */
            --border-radius: 20px;
        }

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

        /* 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 (Estática) */
        .product-card {
            border-radius: var(--border-radius);
            background: white;
            border: 1px solid #fce7f3;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        /* 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 15px rgba(0,0,0,0.15);
            z-index: 1000;
            transition: transform 0.3s ease;
        }

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

        /* Navegación con Glassmorphism */
        header {
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.85);
            transition: all 0.3s ease;
        }

        /* Filtros de Categoría */
        .category-pill {
            transition: all 0.2s ease;
            border: 1px solid #fbcfe8;
            color: var(--brand-secondary);
        }

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

        /* Decoración sección Nosotros */
        .nosotros-img-container::after {
            content: '';
            position: absolute;
            top: 20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--brand-primary);
            border-radius: var(--border-radius);
            z-index: -1;
            opacity: 0.3;
        }

        /* Botón de Acción Principal en Cards */
        .btn-consultar {
            background-color: var(--brand-primary);
            color: white;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn-consultar:hover {
            background-color: var(--brand-secondary);
            transform: translateY(-2px);
        }