/* =========================
   HERO BASE
========================= */
.hero.mapa {
    height: 100vh;
    padding-top: var(--header-height);
}

/* =========================
   FONDO DIFUMINADO
========================= */
.bg {
    position: absolute;
    inset: 0;

    background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(47, 110, 115, 0.589)),
        url("../../img/foto1-01.jpg") center/cover no-repeat;

    filter: blur(2px);
    transform: scale(1.1); /* evita bordes del blur */

    z-index: 0;
}

/* =========================
   WRAPPER CENTRAL
========================= */
.mapa-wrapper {
    position: relative;
    z-index: 2;

    height: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px;

    top: 20px;

    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

/* =========================
   INFO
========================= */
.info {
    background: white; 
    color: black;

    padding: 30px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.4);

    position: relative;
    height: 450px;
}

.info h1 {
    font-size: 36px;
}

.info p {
    font-size: 16px;
    line-height: 1.5;
}

.info a {
    color: black;
}

/* VOLVER */
.volver {
    font-size: 14px;
    opacity: 0.7;
}

.volver:hover {
    opacity: 1;
}

/* =========================
   MAPA CARD
========================= */
.map-card {
    height: 450px;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.btn-primary{
    margin-top: auto;
    transition: transform 0.3s;
}

.btn-primary:hover{
    transform: scale(1.05);
}
