/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    text-align: center;
}

h1 {
    margin-top: 50px;
    color: #333;
}

.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: 10% auto;
    padding: 10px;
    border: 1px solid #888;
    height: 80%;
    min-height: 0; 
    max-height: 480px;
    width: 80%;
    min-width: 0; 
    max-width: 400px;
    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: white;
    color: #f44336;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

button:hover {
    background-color: #f44336;
    color: white;
}
