* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

.oculto {
    display: none !important;
}

/* Alertas */
.classeAlerta {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    border-radius: 10px;
    color: white;
    max-width: 100%;
    background-color: rgba(74, 189, 233, 0.95);
    border: 2px solid rgb(11, 149, 204);
    z-index: 999;
}

.classeAlerta.sucesso {
    background-color: rgba(1, 200, 81, 0.95);
    border: 2px solid rgb(0, 148, 59);
}

.classeAlerta.atencao {
    background-color: rgba(255, 193, 7, 0.95);
    border: 2px solid rgb(192, 144, 1);
}

.classeAlerta.erro {
    background-color: rgba(220, 53, 69, 0.95);
    border: 2px solid rgb(172, 0, 17);
    cursor: no-drop;
}

.classeAlerta.vidro {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(7px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: black;
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 1);
}

.classeAlerta h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.classeAlerta h3 svg {
    fill: white;
    margin: 0 10px;
    width: 30px;
    height: 30px;
}

.classeAlerta p {
    margin-top: 10px;
    font-size: 20px;
    text-align: center;
}

.classeAlerta.popup {
    background-color: #14269bdb;
    border: 2px solid #11207e;
    top: 80px;
}

.classeAlerta.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
}

.classeAlerta.popup svg {
    fill: #ffffff;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    opacity: 1;
}

.classeAlerta.popup h3 {
    font-size: 18px;
    font-weight: 600;
    opacity: 1;
}

/* Fim - alertas */

@media screen and (max-width:700px) {
    .classeAlerta {
        width: 80%;
    }

    .classeAlerta h3 {
        font-size: 20px;
        font-weight: 600;
    }

    .classeAlerta h3 svg {
        width: 20px;
        height: 20px;
    }

    .classeAlerta p {
        font-size: 16px;
    }
}