body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background: #f4f4f4;
}
img {
    max-width: 300px;
    border-radius: 8px;
    margin: 10px 0;
}
button {
    padding: 8px 15px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #0032b2;
    color: white;
}
button:hover {
    background: #002174;
}
.fechar {
    background: #710b00;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 1rem;
    text-align: center; /* centraliza imagem e botões */
    border-radius: 8px;
}
  
.modal-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto; /* espaço em cima e embaixo */
}
  
.modal-content button {
    margin: 0.25rem;
}
  