/* Friburgo Privacidade - Cookie Bar */

.fp-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #006140;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-family: 'Roboto', sans-serif;
}

.fp-cookie-bar.fp-cookie-bar--visible {
    transform: translateY(0);
}

.fp-cookie-bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.fp-cookie-bar-text {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    margin: 0;
    flex: 1;
}

.fp-cookie-bar-text a {
    color: #E87817;
    text-decoration: underline;
    font-weight: 400;
}

.fp-cookie-bar-text a:hover {
    color: #fff;
}

.fp-cookie-bar-btn {
    background: #E87817;
    color: #fff;
    border: none;
    border-radius: 12px 2px 12px 2px;
    padding: 10px 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}

.fp-cookie-bar-btn:hover {
    background: #d06a10;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .fp-cookie-bar {
        padding: 16px 0;
    }

    .fp-cookie-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .fp-cookie-bar-text {
        font-size: 13px;
        line-height: 20px;
    }

    .fp-cookie-bar-btn {
        width: 100%;
        padding: 12px 24px;
    }
}
