
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ubicacion-section {
    background: #f8f8ff;
    padding: clamp(2rem, 5vw, 3.7rem) clamp(1rem, 3vw, 2rem);
    display: flex;
    justify-content: center;
}

.ubicacion-card {
    background: #fff;
    border-radius: clamp(12px, 2.5vw, 18px);
    box-shadow: 0 6px 32px rgba(44, 44, 44, 0.1);
    padding: clamp(1.5rem, 4vw, 2.6rem) clamp(1rem, 3vw, 2.4rem) clamp(1.5rem, 3.5vw, 2.2rem);
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---- Título ---- */
.ubicacion-titulo {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 900;
    color: #212736;
    text-align: center;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.7rem);
    line-height: 1.3;
}

/* ---- Descripción ---- */
.ubicacion-desc {
    color: #353e49;
    font-size: clamp(0.9375rem, 1.8vw, 1.07rem);
    opacity: 0.8;
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
    max-width: 700px;
    line-height: 1.6;
    padding: 0 0.5rem;
}

/* ---- Contenedor flexible para mapa e info ---- */
.ubicacion-content {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.3rem);
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

/* ---- MAPA ---- */
.ubicacion-mapa {
    flex: 1.1;
    min-width: clamp(200px, 30vw, 230px);
    max-width: 340px;
    border-radius: clamp(12px, 2vw, 16px);
    overflow: hidden;
    box-shadow: 0 2px 16px 0 rgba(0, 165, 81, 0.07);
    border: 2px solid #b3eccf;
    margin-bottom: 0;
    background: #f2fff8;
    transition: box-shadow 0.3s;
}

.ubicacion-mapa:hover {
    box-shadow: 0 4px 20px 0 rgba(0, 165, 81, 0.12);
}

.ubicacion-mapa iframe {
    display: block;
    width: 100%;
    height: clamp(180px, 25vw, 210px);
    border: none;
}

/* ---- INFO DE CONTACTO ---- */
.ubicacion-info {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    min-width: clamp(180px, 25vw, 210px);
    max-width: 320px;
    padding-left: clamp(0rem, 1vw, 0.7rem);
}

/* ---- Cada info-item: ícono + texto ---- */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.5rem, 1.5vw, 0.7rem);
    margin-bottom: clamp(0.25rem, 0.8vw, 0.3rem);
}

.info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.info-icon svg {
    width: clamp(20px, 3.5vw, 24px);
    height: clamp(20px, 3.5vw, 24px);
}

.info-text {
    color: #232b38;
    font-size: clamp(0.9375rem, 1.8vw, 1.07rem);
    line-height: 1.6;
    opacity: 0.93;
}

.info-text strong {
    color: #00a551;
    font-weight: 700;
}

/* ---- Botón "Cómo llegar" ---- */
.ubicacion-btn {
    margin-top: clamp(0.375rem, 1vw, 0.5rem);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.375rem, 1vw, 0.5rem);
    padding: clamp(0.5rem, 1.2vw, 0.55rem) clamp(1rem, 2vw, 1.2rem);
    background: linear-gradient(90deg, #f8d7c1 0%, #b2efc7 100%);
    color: #006400;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: clamp(0.9375rem, 1.8vw, 1.06rem);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 165, 81, 0.08);
    transition: all 0.3s ease;
    align-self: flex-start;
    white-space: nowrap;
}

.ubicacion-btn:hover {
    background: linear-gradient(90deg, #b2efc7 0%, #f8d7c1 100%);
    color: #004d26;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 165, 81, 0.15);
}

.ubicacion-btn svg {
    width: clamp(18px, 3vw, 20px);
    height: clamp(18px, 3vw, 20px);
}

/* ---- RESPONSIVE: TABLET (600px - 800px) ---- */
@media (max-width: 800px) and (min-width: 601px) {
    .ubicacion-content {
        gap: 2rem;
    }

    .ubicacion-mapa,
    .ubicacion-info {
        max-width: 100%;
    }

    .ubicacion-btn {
        align-self: stretch;
    }
}

/* ---- RESPONSIVE: MOBILE (< 600px) ---- */
@media (max-width: 600px) {
    .ubicacion-section {
        padding: 2rem 1rem;
    }

    .ubicacion-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .ubicacion-content {
        flex-direction: column;
        align-items: center;
        gap: 1.75rem;
    }

    .ubicacion-mapa,
    .ubicacion-info {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        padding-left: 0;
    }

    .ubicacion-mapa {
        margin-bottom: 0;
    }

    .ubicacion-mapa iframe {
        height: 200px;
    }

    .ubicacion-info {
        gap: 1.25rem;
    }

    .ubicacion-btn {
        width: 100%;
        align-self: stretch;
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ---- RESPONSIVE: MOBILE PEQUEÑO (< 430px) ---- */
@media (max-width: 430px) {
    .ubicacion-section {
        padding: 1.5rem 0.75rem;
    }

    .ubicacion-card {
        padding: 1.25rem 0.875rem;
    }

    .ubicacion-titulo {
        font-size: 1.375rem;
    }

    .ubicacion-desc {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .ubicacion-mapa iframe {
        height: 180px;
    }

    .info-text {
        font-size: 0.9375rem;
    }

    .ubicacion-btn {
        font-size: 0.9375rem;
        padding: 0.5rem 1rem;
    }

    .info-item {
        gap: 0.5rem;
    }
}

/* ---- RESPONSIVE: MOBILE EXTRA PEQUEÑO (< 360px) ---- */
@media (max-width: 360px) {
    .ubicacion-card {
        padding: 1rem 0.625rem;
    }

    .ubicacion-titulo {
        font-size: 1.25rem;
    }

    .ubicacion-desc,
    .info-text {
        font-size: 0.875rem;
    }

    .ubicacion-mapa iframe {
        height: 160px;
    }

    .ubicacion-btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
    }
}

/* ---- ACCESIBILIDAD ---- */
.ubicacion-btn:focus-visible {
    outline: 2px solid #00a551;
    outline-offset: 3px;
}

/* ---- MEJORAS DE PERFORMANCE ---- */
.ubicacion-btn,
.ubicacion-mapa {
    will-change: transform;
}