.cookie-banner {
    position: fixed;
    left: 6px;
    right: 6px;
    bottom: 6px;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background: #fff;
    border: 1px solid #d9e0e8;
    border-radius: 5px;
    padding: 20px 24px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);

    font-family: 'Roboto', Arial, sans-serif;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #1f2937;
}

.cookie-text a {
    color: #dc0000;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.btn-cookie {
    min-width: 160px;
    height: 42px;
    padding: 0 22px;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-recusar {
    background: #fff;
    border: 1px solid #0069d9;
    color: #0069d9;
}

.btn-recusar:hover {
    background: #f2f7ff;
}

.btn-concordar {
    background: #0069d9;
    border: 1px solid #0069d9;
    color: #fff;
}

.btn-concordar:hover {
    background: #0056b3;
}

/* CELULAR */
@media (max-width: 768px) {

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }

    .cookie-text {
        font-size: 14px;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
        min-width: 0;
    }
}