   .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #880404, #7b0000);
            color: white;
            padding: 20px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.4s ease-in-out;
            font-family: "Roboto", sans-serif;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cookie-text {
            font-size: 14px;
            line-height: 1.5;
            text-align: center;
        }

        .cookie-text strong {
            color: #fff;
            font-weight: 600;
        }

        .cookie-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            min-width: 120px;
        }

        .cookie-btn.accept {
            background: white;
            color: #880404;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .cookie-btn.accept:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .cookie-btn.reject {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cookie-btn.reject:hover {
            background: white;
            color: #880404;
            transform: translateY(-2px);
        }

        .cookie-btn.info {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 12px;
            padding: 8px 16px;
            min-width: auto;
        }

        .cookie-btn.info:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        @media (min-width: 768px) {
            .cookie-content {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }

            .cookie-text {
                flex: 1;
                text-align: left;
                margin-right: 20px;
            }

            .cookie-buttons {
                flex-shrink: 0;
            }
        }

        @media (max-width: 480px) {
            .cookie-banner {
                padding: 15px;
            }

            .cookie-btn {
                padding: 10px 20px;
                font-size: 13px;
                min-width: 100px;
            }

            .cookie-text {
                font-size: 13px;
            }
        }

        /* Overlay para cuando se muestra el banner */
        .cookie-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cookie-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* Animación de entrada */
        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .cookie-banner.show {
            animation: slideUp 0.4s ease-out;
        }