.alert-banner {
    background: #fff8e6;
    border: 1px solid #f0d28a;
    border-left: 6px solid #d99200;
    padding: 14px 16px;
    margin: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    border-radius: 10px;
    font-family: Arial;
    position: absolute;
    top: 108px;
    left: 35px;
    right: 35px;
    z-index: 5;
}

.alert-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 25px;
}

.alert-title {
    font-weight: 700;
    font-size: 1rem;
    color: #4a2a00;
    margin-bottom: 20px;
}

.alert-title>span:nth-of-type(2) {
    margin-left: 7px;
}

.alert-text {
    margin: 0;
    font-size: .95rem;
    line-height: 1.4;
    color: #3b2b14;
}

.alert-text+div {
    margin-top: 15px;
}

.alert-contacts {
    white-space: nowrap;
}

button.alert-fechar {
    min-width: 75px;
    border-radius: 7px;
    padding: 6px 12px;
    background-color: #078d07;
    color: white;
    outline: none;
    border: 2px solid green;
    font-size: .9rem;
}

button.alert-link {
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid #d99200;
    border-radius: 8px;
    font-size: .9rem;
    background: #ffe4b3;
    outline: none;
}

@media (prefers-reduced-motion: no-preference) {
    .alert-banner {
        transition: box-shadow .2s ease;
    }

    .alert-banner:hover {
        box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
    }
}