/* --- BANNER DE COOKIES --- */
        .cookie-banner {
            position: fixed;
            bottom: -100px; /* Oculto por defecto antes de que actúe JS */
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background-color: #ffffff;
            color: var(--dark);
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
            padding: 20px;
            border-radius: 12px;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            transition: bottom 0.5s ease;
            border-left: 5px solid var(--primary);
        }

        /* Clase que activará JavaScript para mostrarlo */
        .cookie-banner.show {
            bottom: 20px;
        }

        .cookie-text {
            font-size: 0.88rem;
            line-height: 1.4;
        }

        .cookie-text a {
            color: var(--primary);
            text-decoration: underline;
        }

        .btn-cookie {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            white-space: nowrap;
            transition: background-color 0.2s;
        }

        .btn-cookie:hover {
            background-color: var(--dark);
        }

        @media (max-width: 576px) {
            .cookie-banner {
                flex-direction: column;
                text-align: center;
                bottom: -200px;
            }
            .cookie-banner.show {
                bottom: 10px;
            }
        }