body {
    font-family: 'Inter', sans-serif;
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#map-container {
    position: relative;
    /* ATUALIZADO: Nome da imagem e dimensões */
    background-image: url('../mapa-fundo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 1062px; /* Largura da imagem */
    margin: 0 auto;
    aspect-ratio: 1062 / 642; /* Largura / Altura da imagem para evitar distorção */
}

.lote-dot {
    position: absolute;
    width: 2.5%;
    height: 0;
    padding-bottom: 2.5%;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7), 0 2px 4px rgba(0,0,0,0.4);
}

.lote-dot:hover {
    transform: translate(-50%, -50%) scale(1.5);
    z-index: 10;
}