/* Para cookies */
.cookie-banner {
    font-size: 18px;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 610px;
    background: rgba(16, 27, 36, 0.95);
    color: #fff;
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
    text-align: center;
}

.cookie-banner a {
    color: #4cc9f0;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.5s ease;
}

#acceptCookies {
    min-width: 120px;
    font-size: 18px;
    font-weight: 300;
    background-color: var(--col-pil-azul);
    color: #ffffff;
}

#acceptCookies:hover {
    background-color: #3a9bc9;
}

#rejectCookies {
    min-width: 120px;
    font-size: 18px;
    font-weight: 300;
    background-color: var(--col-pil-roja);
    color: #fff;
}

#rejectCookies:hover {
    background-color: var(--col-rojo-suave);
}