/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f1f1f1;
    height: 100vh;
    width: 100vw;
}

.container {
    width: 100%;
    max-width: 100% !important;
    height: 100%;
    background-image: url('../img/capa.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    padding: 30px;
    color: #fff;
}
*/

/* Estilo para o pop-up */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    display: none;
}

.popup-content {
    background-color: transparent;
    text-align: center;
    position: relative;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%; 
    max-height: 90vh; 
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #333333;
    color: #fff;
    border: 1px solid #fff;
    font-size: 20px;
    border-radius: 50%;
    padding: 2px 8px;
    cursor: pointer;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.popup-close-btn:hover {
    scale: 1.1;
}