.map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.map-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 8px; /* Bordas arredondadas */
}

.map-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #0027CC; /* Azul médio da marca */
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* Sombra suave */
}

.map-point:hover {
    background-color: #004CFF; /* Tom mais claro ao passar o mouse */
}

.modal {
    display: none;
    position: fixed;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    overflow: hidden;
    animation: none; /* Remover fadeIn */
    background-color: transparent; /* Remover o fundo semitransparente */
}

.modal-content {
    background-color: #fefefe;
    padding: 2rem;
    border: 1px solid #888;
    width: 400px; /* Define uma largura fixa */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para dar efeito de janela */
    animation: none; /* Remover slideIn */
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
}