/* =========================
   COOKIE BANNER
   ========================= */

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 10px 30px rgba(14, 64, 67, 0.15);
    z-index: 9999;
    font-family: "Gotham-Book", sans-serif;
    color: #0E4043;
    animation: cookieFadeUp .6s ease;
}

/* Oculto */
.cookie-banner.hidden {
    display: none;
}

/* Título */
.cookie-banner h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #454545;
}

/* Texto */
.cookie-banner p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Link */
.cookie-banner p a {
    color: #DD9037;
    text-decoration: underline;
    transition: opacity .3s ease;
}

.cookie-banner p a:hover {
    opacity: .75;
}

/* Botões */
.cookie-banner .buttons {
    display: flex;
    gap: 12px;
}

.cookie-banner button {
    flex: 1;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    font-size: 0.75rem;
    font-family: "Gotham-Book", sans-serif;
    cursor: pointer;
    transition: all .3s ease;
}

/* Aceitar */
#aceitar-cookies {
    background: #DD9037;
    color: #fff;
}

#aceitar-cookies:hover {
    background: #f7a140;
}

/* Recusar */
#recusar-cookies {
    background: #F2F6F6;
    color: #0E4043;
}

#recusar-cookies:hover {
    background: #E6EEEE;
}

/* =========================
   RESPONSIVO
   ========================= */

@media (max-width: 768px) {
    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: unset;
        padding: 20px;
        border-radius: 14px;
    }

    .cookie-banner h3 {
        font-size: 0.9rem;
    }

    .cookie-banner p {
        font-size: 0.8rem;
    }

    .cookie-banner button {
        font-size: 0.7rem;
        padding: 9px 0;
    }
}

/* =========================
   ANIMAÇÃO SUTIL
   ========================= */

@keyframes cookieFadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
