/* Estilo inicial do pop-up (oculto) */
.popup {
    display: none;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* fundo escuro translúcido */
    z-index: 9999;
    /* garante que o pop-up esteja sobre o conteúdo */
    overflow: auto;
    /* permite rolar o conteúdo do pop-up se necessário */
}

/* Estilo do conteúdo do pop-up */
.popup-content {
    background-color: #fff;
    width: 80%;
    max-width: 400px;
    margin: 3% auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 50px;
}

.popup-content2 img {
    width: 300px;
}

.popup-content2 h2 {
    font-family: "TonCondensed-Black", Sans-serif;
    font-size: 48px;
    font-weight: 800;
    padding: 0px 0px;
    letter-spacing: 0.2px;
    -webkit-text-stroke-color: #068e22;
    stroke: #068e22;


}
.popup-content2 h2 span {
    color: #068e22
}

.popup-content2 h1 {
    font-size: 20px;
    text-align: center;
}


/* Estilo do botão Fechar */
#close-popup {
    background-color: #00cc66;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 27px;
}