/* =========================================================
   SOLUSEVEN — BANNER DE COOKIES (LGPD)
========================================================= */

.s7-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #0b1830;
    color: #cfd9ee;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

.s7-cookie-texto {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    max-width: 640px;
    flex: 1 1 320px;
}

.s7-cookie-texto a {
    color: #7be8a8;
    text-decoration: underline;
}

.s7-cookie-acoes {
    display: flex;
    gap: 10px;
    flex: none;
}

.s7-cookie-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.s7-cookie-btn-rejeitar {
    background: transparent;
    color: #cfd9ee;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.s7-cookie-btn-rejeitar:hover {
    background: rgba(255, 255, 255, 0.08);
}

.s7-cookie-btn-aceitar {
    background: #00a650;
    color: #fff;
}

.s7-cookie-btn-aceitar:hover {
    filter: brightness(1.08);
}

@media (max-width: 600px) {
    .s7-cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .s7-cookie-acoes {
        justify-content: center;
    }
}
