   body {
            font-family: 'Inter', sans-serif;
            background-color: #030014;
            color: white;
            overflow-x: hidden;
        }

        /* Efectos de Brillo de Fondo */
        .glow-top {
            position: absolute;
            top: -150px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 600px;
            background: radial-gradient(circle, rgba(123, 49, 255, 0.15) 0%, rgba(3, 0, 20, 0) 70%);
            z-index: -1;
        }

        /* Cambia .glow-center por esto */
        .glow-center {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%; /* Cambiado de 800px a 100% */
            max-width: 800px; /* Evita que crezca más de 800px */
            height: 800px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(3, 0, 20, 0) 70%);
            z-index: -1;
            pointer-events: none; /* Evita que interfiera con clics */
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(168, 85, 247, 0.4);
        }

        .btn-primary {
            background: white;
            color: black;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #e2e2e2;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -10px rgba(255, 255, 255, 0.3);
        }

        /* Animación de Flotado */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .animate-float {
            animation: float 5s ease-in-out infinite;
        }

        .grid-pattern {
            background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px;
        }

        /* Degradado Circular Morado */
        .buy-button-gradient {
            background: radial-gradient(circle at center, #a855f7 0%, #6b21a8 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Animación de Temblor */
        @keyframes shake-animation {
            0%, 90%, 100% { transform: translateX(0); }
            92% { transform: translateX(-5px) rotate(-1deg); }
            94% { transform: translateX(5px) rotate(1deg); }
            96% { transform: translateX(-3px) rotate(-1deg); }
            98% { transform: translateX(3px) rotate(1deg); }
        }

        .btn-shake {
            animation: shake-animation 5s infinite ease-in-out;
        }

        /* Estilo extra para el input */
        #qty-input:focus {
            color: #a855f7;
        }
        @keyframes pulse-red {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .animate-pulse-slow {
            animation: pulse-red 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        /* La imagen que no se ve, no debe recibir clics */
        .carousel-img.opacity-0 {
            z-index: 0;
            pointer-events: none;
        }

        /* La imagen visible se pone al frente y acepta clics */
        .carousel-img.opacity-100 {
            z-index: 20;
            pointer-events: auto;
        }

        /* 1. Respetar saltos de línea y espacios en blanco */
        .raw-html-content {
            white-space: normal; /* Permite que el HTML mande */
            line-height: 1.6;
        }

        /* 2. Restaurar los tamaños de fuente que Tailwind quita */
        .raw-html-content h1 { font-size: 2.5rem; font-weight: bold; margin-bottom: 1rem; display: block; }
        .raw-html-content h2 { font-size: 2rem; font-weight: bold; margin-bottom: 0.8rem; display: block; }
        .raw-html-content h3 { font-size: 1.75rem; font-weight: bold; margin-bottom: 0.6rem; display: block; }
        .raw-html-content p { margin-bottom: 1.2rem; display: block; }

        /* 3. Asegurar que los colores inline (style="color:...") funcionen */
        .raw-html-content [style] {
            color: inherit; /* Permite que el estilo inline del HTML mande */
        }

        /* 4. Si hay iconos o emojis, que no se amontonen */
        .raw-html-content img, .raw-html-content svg {
            display: inline-block;
            margin: 0 5px;
        }

        /* 5. Forzar saltos de línea manuales si el editor usa \n */
        .raw-html-content {
            white-space: pre-wrap; 
        }

       .whatsapp-float {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 70px;
            height: 70px;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: whatsapp-pulse 2s infinite;
        }

        .whatsapp-float img {
            width: 100%;
            height: auto;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

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

        /* Animación suave 
        @keyframes whatsapp-pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }*/

