
/* ===============================
   MAPA MÁS INTEGRADO
=============================== */

.map-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 992px) {

  .map-container {
    margin-top: 2rem;
    height: 320px;
  }

}
/* ===================================== */
/* TEXTO DESCRIPTIVO */
/* ===================================== */

.confianza-box .small {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 380px;
    margin: 0 auto;
}
.confianza-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
/* ===================================== */
/* GEO WRAPPER */
/* ===================================== */

.geo-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    font-size: 0.9rem;
    color: #334155;
}

.geo-left,
.geo-right {
    flex: 1;
}

.geo-wrapper .fw-semibold {
    font-weight: 600;
    color: #0f172a;
}

/* ===================================== */
/* CTA */
/* ===================================== */

.geo-cta {
    text-align: left;
}

.btn-ubicacion {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 8px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ubicacion:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 992px) {

    .geo-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .geo-cta {
        text-align: center;
    }

}
