/* Estilos para el banner de cookies moderno */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        
        .cookie-text-section {
            flex: 1;
            min-width: 280px;
        }
        
        .cookie-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .cookie-title i {
            font-size: 1.5rem;
            color: #ffcc00;
        }
        
        .cookie-description {
            font-size: 0.9rem;
            line-height: 1.5;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }
        
        .cookie-terms-preview {
            background: rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 0.75rem 1rem;
            margin-top: 0.75rem;
            font-size: 0.85rem;
            line-height: 1.5;
            border-left: 3px solid #ffcc00;
        }
        
        .cookie-terms-preview p {
            margin: 0 0 0.5rem 0;
        }
        
        .cookie-terms-preview a {
            color: #ffcc00;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .cookie-terms-preview a:hover {
            color: #ffdd44;
            text-decoration: underline;
        }
        
        .cookie-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .cookie-accept-btn {
            background: linear-gradient(135deg, #ffcc00 0%, #ffb347 100%);
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            color: #1a1a2e;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,204,0,0.3);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .cookie-accept-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,204,0,0.4);
        }
        
        .cookie-accept-btn:active {
            transform: translateY(0);
        }
        
        .cookie-link-btn {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 0.9rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .cookie-link-btn:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }
        
        @media (max-width: 768px) {
            .cookie-banner-content {
                flex-direction: column;
                text-align: center;
                padding: 1.2rem;
            }
            
            .cookie-actions {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .cookie-terms-preview {
                text-align: left;
            }
        }
        
        /* Animación sutil para el banner */
        @keyframes pulse {
            0% { opacity: 0.8; }
            100% { opacity: 1; }
        }
