
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Estilo del fondo oscurecido */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        /* Contenedor del modal */
        .modal-container {
            background-color: #fff;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .modal-container.active {
            transform: scale(1);
            opacity: 1;
        }

        /* Imagen promocional */
        .modal-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        /* Contenido del modal */
        .modal-content {
            padding: 25px;
            text-align: center;
        }

        .modal-content h2 {
            color: #333;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .modal-content p {
            color: #666;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        /* Botones */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 0 5px;
            cursor: pointer;
        }

        .btn-primary {
            background-color: #ff4757;
            color: white;
        }

        .btn-primary:hover {
            background-color: #ff6b81;
        }

        .btn-secondary {
            background-color: #f1f2f6;
            color: #333;
        }

        .btn-secondary:hover {
            background-color: #dfe4ea;
        }

        /* Cerrar modal */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        .close-btn::before, .close-btn::after {
            content: '';
            position: absolute;
            width: 15px;
            height: 2px;
            background-color: white;
        }

        .close-btn::before {
            transform: rotate(45deg);
        }

        .close-btn::after {
            transform: rotate(-45deg);
        }

        /* Contador regresivo */
        .countdown {
            margin-top: 20px;
            font-size: 14px;
            color: #ff4757;
            font-weight: bold;
        }

        /* Efecto de apariciÃ³n */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        body {
            animation: fadeIn 0.5s ease;
        }
        
        
        /* Estilos personalizados para el modal de notificaci¨®n */
        .notification-modal {
            position: fixed;
            bottom: 80px;
            
            right: 20px;
            width: 350px;
            z-index: 9999;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-radius: 10px;
            overflow: hidden;
            transform: translateX(0);
            transition: transform 0.3s ease-out;
        }
        
        .notification-modal.fade-out {
            transform: translateX(150%);
        }
        
        .notification-header {
            background-color: black;
            padding: 10px 15px;
            border-bottom: 0px solid #dee2e6;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .notification-body {
            padding: 0px;
            display: flex;
            align-items: center;
            background:#f8f9fa;
        }
        
        .notification-img {
            height: 100%;
            object-fit: cover;
        }
        
        .notification-content {
            flex: 1;
            padding: 15px;
        }
        
        .notification-title {
            font-weight: 600;
            margin-bottom: 5px;
            color:red;
        }
        
        .notification-message {
            font-size: 0.9rem;
            color: black;
            margin-bottom: 10px;
        }
        
        .notification-btn {
            padding: 5px 10px;
            font-size: 0.8rem;
            color:red;
        }
        .notification-btn:hover {
            color: white; /* Cambia el color del texto a rojo al hacer hover */
            background-color: red; /* Cambia el fondo a amarillo */
            border-radius: 20px;
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: #6c757d;
            cursor: pointer;
        }
   