.pop-up-jornal {
    background-color: #00529E;
    width: 100%;
    position: fixed;
    bottom: 0;
    height: 230px;
    display: none;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 999999999999999 !important;
    animation: fadeIn 0.5s ease; 
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

.pop-up-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.pop-up-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 150px;
}

.pop-up-content h1 {
    font-family: "Nunitosans-extrabold";
    color: #ffffff;
    font-size: 38px;
}

.pop-up-content p {
    font-family: "NunitoSans-Regular";
    color: #ffffff;
    font-size: 16px;
    max-width: 600px;
    line-height: 20px;
}

.pop-up-content p span {
    font-family: "NunitoSans-Bold";
}

.pop-up-content a {
    color: #ffffff;
    display: flex;
    width: 150px;
    border-radius: 25px;
    height: 35px;
    background-color: #002C55;
    justify-content: center;
    align-items: center;
    font-family: "NunitoSans-SemiBold";
    font-size: 14px;
}

.pop-up-img img {
    margin-bottom: 130px;
    height: 370px;
}

.close-pop-up {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #ffffff;
    font-family: "NunitoSans-Bold";
    cursor: pointer;
}

.pop-up-img-mobile {
    display: none;
}

@media (max-width: 768px) {
    .pop-up-content h1 {
        font-size: 22px;
    }

    .pop-up-content p {
        font-size: 13px;
        max-width: 290px;
        line-height: 16px;
    }

    .pop-up-jornal {
        height: 260px;
    }

    .pop-up-container {
        padding: 25px;
        align-items: start;
        justify-content: start;
        flex-direction: column;
        width: 100%;
    }

    .pop-up-content {
        gap: 15px;
        padding: 0;
    }

    .pop-up-content a {
        width: 100px;
    }

    .close-pop-up {
        top: 20px;
        right: 20px;
    }

    .pop-up-img {
        display: none;
    }

    .pop-up-img-mobile {
        display: flex;
        position: absolute;
        bottom: 0;
        right: 0;
    }
}
@media (min-width: 600px) and (max-width: 1024px) { 
    .pop-up-container {
        align-items: flex-start;
    }
    .pop-up-content {
        padding-left: 20px;
        padding-top: 20px;
        gap: 0;
    }
    .pop-up-img {
        width: 50%;
    }
    .pop-up-content h1 {
        font-size: 32px;
        line-height: 34px;
    }
} 