@charset "UTF-8";

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    max-width: 1100px;
    width: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 5000;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: #1e3a5f;
    line-height: 1.4;
}

.cookie-banner a {
    color: #2f6fe0;
    font-weight: 600;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Boto */
.cookie-banner button {
    background: linear-gradient(135deg, #1e4fa1, #2f6fe0);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(47,111,224,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-banner button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(47,111,224,0.5);
}

.cookie-banner button:active {
    transform: scale(0.92);
}
