/* ── MAPA SECTION ──────────────────────────────────────── */
.mapa-section {
    font-family: 'Inter', sans-serif;
    padding: 80px 80px;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%232d4f95' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.mapa-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

/* ── INFO COLUMNA IZQUIERDA ────────────────────────────── */
.mapa-info {
    display: flex;
    flex-direction: column;
    gap: 24px;

    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mapa-info.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* overline */
.mapa-overline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: #b4935a;
    text-transform: uppercase;
}

.mapa-overline::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: #b4935a;
    flex-shrink: 0;
}

/* título */
.mapa-info h2 {
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 700;
    color: #0a1a35;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.mapa-info h2 em {
    font-style: normal;
    color: #2d4f95;
    font-weight: 300;
}

/* descripción */
.mapa-info>p {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* ── INFO ITEMS ────────────────────────────────────────── */
.info-destacada {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item:hover {
    background: #f8faff;
}

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(45, 79, 149, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2d4f95;
    font-size: 15px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-content h4 {
    font-size: 12px;
    font-weight: 700;
    color: #0a1a35;
    margin: 0;
    letter-spacing: 0.01em;
}

.info-content p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

/* CTA */
.boton-direcciones {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2d4f95;
    color: #ffffff;
    padding: 11px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    align-self: flex-start;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(45, 79, 149, 0.25);
}

.boton-direcciones:hover {
    background: #1e3a72;
    transform: translateY(-2px);
}

/* ── MAPA COLUMNA DERECHA ──────────────────────────────── */
.mapa-embed {
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;

    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease 0.15s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.mapa-embed.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.mapa-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(15%) contrast(95%);
    transition: filter 0.4s ease;
    display: block;
}

.mapa-embed:hover iframe {
    filter: grayscale(0%) contrast(100%);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .mapa-section {
        padding: 60px 40px;
    }

    .mapa-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mapa-section {
        padding: 48px 20px;
    }

    .mapa-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mapa-info {
        transform: translateY(24px);
        order: 2;
    }

    .mapa-info.is-visible {
        transform: translateY(0);
    }

    .mapa-embed {
        height: 320px;
        order: 1;
        transform: translateY(24px);
    }

    .mapa-embed.is-visible {
        transform: translateY(0);
    }
}