#map {
    height: 700px;
}
/* Estilo do marcador customizado */
.custom-pin {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50% 50% 50% 0;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    border: 2px solid #000;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Opcional: Um efeito de pulsação para dar vida ao mapa */
.custom-pin::after {
    content: '';
    width: 14px;
    height: 14px;
    margin: 8px 0 0 8px;
    background: #000;
    position: absolute;
    border-radius: 50%;
}
.marcador-verde .custom-pin{
    background-color: green;
}
.marcador-vermelho .custom-pin{
    background-color: red;
}
.marcador-amarelo .custom-pin{
    background-color: yellow;

}
.nome-local-pin{
    font-size: 1.2rem;
}