body {
  background-color: #00643F; /* Verde suave */
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.Contacto {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Contacto img {
  max-width: 80%;     /* Hace la imagen responsiva */
  height: auto;       /* Mantiene la proporción */
  max-height: 200px;  /* Limita la altura si es necesario */
}

.Map {
  width: 80%;
  max-width: 1400px;
  margin: 1rem auto;
  position: relative;
  padding-bottom: 30%; /* ← Más rectangular que 56.25% */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.Map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.Iconos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
}

.Iconos a img {
    width: 250px; /* ícono más grande */
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Iconos a img:hover {
    transform: scale(1.2);

}
.Logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.Logo img {
    max-width: 80%;
    height: auto;
}


/* Responsivo para tablets */
@media (max-width: 768px) {
    .Iconos a img {
        width: 180px;
    }
}

/* Responsivo para móviles */
@media (max-width: 480px) {
    .Iconos a img {
        width: 140px;
    }
}