
        :root {
            --primary: #AD4D58;          /* Burdeos/rosa corporativo oficial */
            --primary-hover: #913a44;    /* Tono burdeos más profundo para hovers */
            --accent: #F4BA3F;           /* Dorado cálido corporativo de la escuela */
            --accent-hover: #e0a22e;     /* Hover para elementos dorados */
            --bg-gradient-start: #FEFDF9; /* Crema suave de fondo */
            --bg-gradient-end: #FFF5F5;   
        }

        /* 
           Mantenemos el body limpio de vh rígidos y flexboxes globales 
           para evitar bucles infinitos de redimensionamiento de iFrames en Divi/Elementor.
        */
        body {
            font-family: 'Quicksand',"Quicksand Fallback", sans-serif;
            background: transparent;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* --- CONTENEDOR DE SECCIÓN SEGURO --- */
        .ruleta-seccion-contenedor {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 12px;
            box-sizing: border-box;
            background: transparent;
        }

        /* --- CONTENEDOR PRINCIPAL AUTORESPONSIVE --- */
        .ruleta-wrapper {
            position: relative;
            width: 100%;
            max-width: 440px; /* Ancho móvil por defecto */
            margin: 0 auto;
            background: #ffffff;
            border: 8px solid #fcfbf7; 
            border-radius: 36px; 
            padding: 30px 20px;
            box-shadow: 0 15px 40px rgba(173, 77, 88, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
            overflow: hidden;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        /* --- ESTRUCTURA RESPONSIVA DE COLUMNAS --- */
        .ruleta-container {
            display: flex;
            flex-direction: column;
            gap: 24px;
            width: 100%;
        }

        /* Adaptación perfecta a pantallas grandes (Desktop) */
        @media (min-width: 992px) {
            .ruleta-wrapper {
                max-width: 1140px; /* Expansión horizontal en escritorio */
                padding: 40px 48px;
                border-radius: 48px;
            }
            .ruleta-container {
                flex-direction: row;
                align-items: stretch;
                justify-content: space-between;
                gap: 40px;
            }
            .col-izquierda {
                flex: 1 1 33%;
                text-align: left;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .col-centro {
                flex: 1 1 34%;
                max-width: 400px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .col-derecha {
                flex: 1 1 33%;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
        }

        /* --- EFECTO DE PAPELITO CONTENEDOR --- */
        .contenedor-pildora {
            background: #fefdf9; 
            border: 2px dashed #e3dec3; 
            border-radius: 18px;
            width: 100%;
            min-height: 185px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 24px;
            box-sizing: border-box;
            box-shadow: inset 0 0 15px rgba(218, 211, 187, 0.05), 0 4px 10px rgba(0,0,0,0.01);
            position: relative;
            margin: 15px 0;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.2);
            user-select: none;
            -webkit-user-select: none;
        }

        .contenedor-pildora:hover {
            transform: scale(1.02) rotate(0.3deg);
            border-color: var(--primary);
            background: #ffffff;
            box-shadow: 0 8px 20px rgba(173, 77, 88, 0.05);
        }

        .contenedor-pildora:active {
            transform: scale(0.98);
        }

        /* --- EFECTO SPINNING DE TEXTO --- */
        @keyframes shuffle-blur {
            0% { transform: translateY(-1.5px); filter: blur(1.2px); opacity: 0.85; }
            50% { transform: translateY(1.5px); filter: blur(1.5px); opacity: 0.95; }
            100% { transform: translateY(-1px); filter: blur(1.2px); opacity: 0.85; }
        }

        .girando-activo {
            animation: shuffle-blur 0.08s infinite alternate;
            color: var(--primary) !important;
        }

        /* --- ESTRELLAS FLOTANTES DECORATIVAS --- */
        @keyframes parpadeoEstrella {
            0%, 100% { opacity: 0.15; transform: scale(0.8); }
            50% { opacity: 0.95; transform: scale(1.15); }
        }

        .star {
            position: absolute;
            pointer-events: none;
            animation: parpadeoEstrella 3s infinite ease-in-out;
            color: var(--accent); /* Dorado cálido */
            z-index: 10;
        }
        
        /* Ajustadas con seguridad para que no desborden lateralmente en pantallas pequeñas */
        .star-1 { top: 15px; left: -10px; animation-delay: 0s; }
        .star-2 { top: 35px; right: -10px; animation-delay: 0.7s; }
        .star-3 { bottom: 70px; left: -12px; animation-delay: 1.4s; }
        .star-4 { bottom: 90px; right: -12px; animation-delay: 2.1s; }

        @media (max-width: 768px) {
            .star-1 { left: 8px; }
            .star-2 { right: 8px; }
            .star-3 { left: 8px; }
            .star-4 { right: 8px; }
        }

        /* --- BOTONES DE ACCIÓN --- */
        .btn-accion {
            font-family: 'Fredoka',"Fredoka Fallback", sans-serif;
            width: 100%;
            border: none;
            padding: 16px 20px;
            font-size: 1.15rem;
            font-weight: 700;
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            outline: none;
            box-shadow: 0 6px 16px rgba(0,0,0,0.06);
            user-select: none;
        }

        /* Estado: Iniciar Giro (Burdeos Corporativo) */
        .btn-girar {
            background: var(--primary);
            color: white;
            box-shadow: 0 6px 14px rgba(173, 77, 88, 0.3);
        }

        .btn-girar:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(173, 77, 88, 0.4);
        }

        /* Estado: Detener (Burdeos con efecto latido para destacar) */
        .btn-parar {
            background: #ca4653;
            color: white;
            box-shadow: 0 6px 14px rgba(173, 77, 88, 0.4);
            animation: latido-suave 1.5s infinite ease-in-out;
        }

        .btn-parar:hover {
            background: var(--primary-hover);
            transform: scale(1.02);
        }

        /* Estado: Saca otra */
        .btn-otra {
            background: var(--primary);
            color: white;
            box-shadow: 0 6px 14px rgba(173, 77, 88, 0.3);
        }

        .btn-otra:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(173, 77, 88, 0.4);
        }

        @keyframes latido-suave {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.025); }
        }

        /* --- CONTENEDOR PUBLICITARIO DE LA SAGA --- */
        .saga-promocion {
            background: linear-gradient(135deg, #fefdfb 0%, #fcfbf5 100%);
            border: 1px solid #e3dec3;
            border-radius: 20px;
            padding: 24px 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            border-left: 4px solid var(--primary);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            width: 100%;
        }

        .saga-boton {
            background: var(--primary);
            color: white;
            font-size: 0.95rem;
            font-weight: 700;
            padding: 12px 20px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            box-shadow: 0 4px 10px rgba(173, 77, 88, 0.25);
            transition: all 0.2s ease;
        }

        .saga-boton:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
            box-shadow: 0 6px 12px rgba(173, 77, 88, 0.35);
        }

        /* --- CONFETTI ANIMATION --- */
        .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 50;
            animation: explosion 1s forwards ease-out;
        }

        @keyframes explosion {
            0% { transform: translateY(0) translateX(0) scale(1) rotate(0deg); opacity: 1; }
            100% { transform: translateY(var(--y-off)) translateX(var(--x-off)) scale(0.5) rotate(360deg); opacity: 0; }
        }
    