/* =============================================================
   LOCATION — Sección Visítanos
   ============================================================= */

.location-flex-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.location-info-card {
    flex: 1;
    background: var(--color-ubam-white);
    border-radius: 30px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
}

.location-info-card hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 4px 0;
}

.map-container-side {
    flex: 1.5;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-container-side iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

/* ── DETALLES ── */
.address-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.vis-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.vis-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(4, 178, 217, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.vis-ico img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.vis-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-ubam-dark);
    display: block;
    margin-bottom: 2px;
}

.vis-item span {
    font-size: 13.5px;
    color: var(--color-ubam-gray);
}

.info-text {
    font-size: 15px;
    color: var(--color-ubam-gray);
    line-height: 1.72;
    margin-bottom: 4px;
}

/* ── BOTÓN ── */
.btn-llegar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-ubam-blue), var(--color-ubam-dark-blue));
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(4, 178, 217, .38);
    transition: transform .15s, box-shadow .2s;
    align-self: flex-start;
}

.btn-llegar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(4, 178, 217, .52);
}
