.card-mapa {
  background: #E9E9E9;
  padding: 8px 8px 15px 8px;
  width: 250px;
  border-radius: 10px;
  animation: zoomInCard 0.3s ease forwards;
  transform-origin: center center;
}
@media (max-width: 1100px) {
  .card-mapa {
    width: 100%;
  }
}
.card-mapa__thumb {
  width: 100%;
  height: 152px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.card-mapa__thumb .c-btn-small {
  position: absolute;
  top: 10px;
  right: 10px;
}
.card-mapa__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-mapa__content {
  padding: 15px 10px 0 10px;
}
.card-mapa__content h4 {
  color: #925E24;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  margin-bottom: 10px;
}
.card-mapa__content p {
  color: #6E6E6E;
  font-family: Inter;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}
.card-mapa__content p strong {
  font-size: 14px;
}
.card-mapa__content p small {
  font-size: 12px;
  padding: 10px 0 0 0;
  display: block;
  line-height: 150%;
}
.card-mapa__content p img {
  margin-top: 8px;
}

@keyframes zoomInCard {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
