.card {
  perspective: 1000px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.card > .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-front img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-front {
  background-color: white;
}

.card-back {
  background-color: #f8f9fa;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
/* google maps  */

.mapa-section iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(20%) brightness(95%); /* Estilo minimalista */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
 
/* mas estilos  */
.card-back p {
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

h1, h2 {
  font-weight: 600;
  color: #4C1F0F;
}
.mapa-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

