#popup-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #25b6da8e;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#popup-content {
    background-color: var(--highlight);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 25%;
    max-height: 80vh;
    padding: 0;
    overflow-y: auto;
    position: relative;
}

.popup-text {
    position: absolute;
    bottom: 5%;
    left: 5%;
}

#div-popup-subtitle p {
    margin: 0;
}

#div-btn-fechar {
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: 10;
}

#div-btn-fechar button {
    background-color: #00000077;
    font-size: 1.5em;
    border: none;
    color: var(--highlight);
    border-radius: 5px;
    cursor: pointer;
}

.popup-text h1 {
    font-size: 1.5em;
    color: var(--highlight);
    margin-bottom: 10px;
}

#div-popup-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--aux-brand);
    font-size: 1em;
    margin: 0;
}

.container-popup-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.container-popup-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-popup-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #005a70, #005a7042, transparent);
}

#popup-content img {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

#popup-content::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1024px) {
    #popup-content {
        width: 50%;
        max-height: 80vh;
    }

    .popup-text h1 {
        font-size: 1.75em;
    }

    #div-popup-subtitle {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    #popup-content {
        width: 50%;
        max-height: 75vh;
    }

    .popup-text h1 {
        font-size: 1.5em;
    }

    #div-popup-subtitle {
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    #popup-content {
        width: 90%;
        max-height: 70vh;
    }

    .popup-text h1 {
        font-size: 1.5em;
    }
    
    #div-popup-subtitle {
        font-size: 0.9em;
    }
}