/* ==========================================================================
   Cookie Toast — Banner de cookies (canto inferior direito)
   ========================================================================== */

.cookie-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    width: min(360px, calc(100vw - 32px));
    padding: 24px 24px 56px;
    background: #13171A;
    color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(10, 13, 18, 0.25);
    font-family: var(--font-text);
    animation: cookie-toast-in 0.3s ease;
}

.cookie-toast[hidden] {
    display: none;
}

@keyframes cookie-toast-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cookie-toast__title {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
}

.cookie-toast__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-toast__btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    background: #EF8722;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.cookie-toast__btn:hover {
    background: #D9741A;
}

.cookie-toast__btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

@media (max-width: 480px) {
    .cookie-toast {
        right: 16px;
        bottom: 16px;
        left: 16px;
        width: auto;
        padding: 20px;
    }
}
