
/* CONTENEDOR */
.footer {
  background: #ffffff;
  color: #0a1f44;
  display: flex;
  flex-wrap: wrap;
  padding: 80px 60px 30px;
  gap: 70px;
}

/* TITULO */
.footer-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #0a1f44;
}

/* ITEMS */
.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding: 6px;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
}

.footer-item:hover {
  background: rgba(10,31,68,0.05);
  transform: translateX(6px);
}

/* ICONOS AZUL */
.icon-img {
  width: 24px;
  height: 24px;
  filter: invert(12%) sepia(50%) saturate(3000%) hue-rotate(190deg);
}

/* TEXTOS */
.footer-item .label {
  font-size: 14px;
  color: #6b7c93;
}

.footer-item .text {
  font-size: 17px;
  font-weight: 500;
  color: #0a1f44;
}

/* LINKS */
.footer-item a {
  text-decoration: none;
  color: #0a1f44;
}

.footer-item a:hover {
  text-decoration: underline;
}

/* LADO IZQUIERDO */
.footer-left {
  flex: 1;
  min-width: 320px;
}

/* MAPA (MISMO IMPACTO QUE TEXTO) */
.footer-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: stretch;
}

.footer-right iframe {
  width: 100%;
  height: 100%;
  min-height: 420px; /* 👈 MISMO NIVEL VISUAL */
  border: none;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.footer-right iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(10,31,68,0.15);
}

/* COPYRIGHT */
.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #eee;
  font-size: 15px;
  color: #6b7c93;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    padding: 50px 20px;
  }

  .footer-right iframe {
    min-height: 300px;
  }
}