.mapa-section {
    padding: 80px 0;
    background: var(--blanco);
}

.mapa-section h2 {
    color: var(--verde-olivo);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.mapa-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #eee;
    margin-top: 30px;
}

.mapa-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.mapa-frame:hover img {
    transform: scale(1.02); /* Zoom sutil al pasar mouse */
}