/* ===========================
   responsive3.css
   Mejora visual del mapa y 
   optimización general responsive
=========================== */

/* 🔹 Ajustes generales */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🔹 Sección del mapa */
.ubicacion {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #f8f8f8;
}

.ubicacion iframe {
  width: 90%;
  height: 350px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease-in-out;
}

.ubicacion iframe:hover {
  transform: scale(1.02);
}

/* ===========================
   📱 Responsive Design
=========================== */

/* Tablets (pantallas medianas) */
@media screen and (max-width: 1024px) {
  .ubicacion iframe {
    width: 95%;
    height: 300px;
  }
}

/* Celulares (pantallas pequeñas) */
@media screen and (max-width: 768px) {
  .ubicacion {
    padding: 10px;
  }

  .ubicacion iframe {
    width: 100%;
    height: 250px;
  }

  .tamañodepie {
    font-size: 14px;
    text-align: center;
    padding: 0 10px;
  }
}

/* Muy pequeño (teléfonos compactos) */
@media screen and (max-width: 480px) {
  .ubicacion iframe {
    height: 120px;
  }

  .tamañodepie {
    font-size: 13px;
  }
  
}
