/* styles.css */
.popup {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    position: relative;
    background-color: #fff;
    margin: 20% auto;
    padding: 10px;
    border: 1px solid #888;
    width: 100%;
    min-width: 0; 
    max-width: 350px;
    height: 100%;
    min-height: 0; 
    max-height: 430px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    text-align: center;
}

.promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

button {
    background-color: #BC4A95;
    color: #07BF51;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

button:hover {
    background-color: #BC4A95;
    color: white;
}