/* Arquivo: cookie-padrao.css */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -10px 30px rgba(31, 42, 68, 0.15);
    z-index: 9999;
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid rgba(47, 125, 255, 0.35);
    font-family: "Nunito", "Segoe UI", sans-serif;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #1f2a44;
    flex: 1 1 300px;
    line-height: 1.5;
}

.cookie-content a {
    color: #2f7dff;
    font-weight: 700;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-outline-cookie {
    background: transparent;
    color: #59627a;
    border: 2px solid rgba(31, 42, 68, 0.15);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: 1rem;
}

.btn-outline-cookie:hover {
    background: rgba(31, 42, 68, 0.05);
    color: #1f2a44;
}

.btn-primary-cookie {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2f7dff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 0 rgba(47, 125, 255, 0.35);
}

@media (max-width: 720px) {
    .cookie-banner {
        padding: 16px 16px max(16px, env(safe-area-inset-bottom));
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .cookie-content p {
        flex: none;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    .cookie-actions {
        width: 100%;
        flex-direction: column-reverse;
        gap: 10px;
    }
    .cookie-actions button {
        width: 100%;
        padding: 12px;
    }
}