@keyframes zoom-in {
	0% {
		opacity: 0;
		transform: scale(0);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.zoom-in {
    animation: zoom-in 1s ease 0s 1 normal forwards;
}

#mapa {
    height: 25rem;
    background-color: #f4f6f400;

}

#mapa path {
    outline: none !important;
}
/*button#totop {
    background-color: white;
    border: 1px solid black;
    bottom: 1em;
    cursor: pointer;
    display: block;
    padding: 1em;
    position: fixed;
    right: 1em;
    z-index: 1000;
}*/

div.leaflet-tooltip-pane {
    width: 120px;
}

div.leaflet-tooltip-pane h4 {
    text-align: center;
    margin: 0;
}

div.leaflet-tooltip-pane img {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 120px !important;
}

div.paises {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

div.paises div {
    background-color: #086357;
    border-radius: 10px;
    display: block;
    padding: 10px;
    text-align: center;
}

div.paises h4 {
    margin-bottom: 0.5em;
}

div.paises img {
    height: 120px;
    max-height: 120px;
    width: auto;
}

div.paises p.endereco {
    color: #ddd;
    font-size: 14px;
    font-style: italic;
    margin: 0;
    padding: 1em 0;
}

@media (max-width:1024px) {
    div.paises {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 782px) {
    div.paises {
        grid-template-columns: 1fr;
    }
}