#avisoSaude {
    background: linear-gradient(to top, #393838, #000000, #393838);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    overflow: hidden;
}

#avisoSaude h2 {
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.alerta-saude {
    font-size: 15px;
    color: #e16060;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Campos de entrada futurísticos */
#formSaude {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#formSaude label {
    display: block;
    width: 90%;
    text-align: left;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
}

#formSaude input, #formSaude textarea {
    width: 90%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

#formSaude input::placeholder, #formSaude textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#formSaude input:focus, #formSaude textarea:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0px 0px 10px rgba(15, 125, 245, 0.8);
}

#formSaude textarea {
    resize: none;
    height: 100px;
}

/* Botão futurístico */
#formSaude button {
    width: 90%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to left, #484747, #979696);
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#formSaude button:hover {
    background: linear-gradient(to left, #484747, #555454);
    transform: scale(1.08);
}

@media screen and (max-width: 768px) {
    #avisoSaude {
        padding: 20px;
        max-width: 90%;
    }

    #formSaude label, #formSaude input, #formSaude textarea, #formSaude button {
        width: 100%;
    }
}
