.ubicaciones-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 70px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.ubicaciones-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.ubicacion-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(50% - 10px);
    max-width: 500px;
    transition: transform 0.3s ease;
}

.ubicacion-card:hover {
    transform: translateY(-5px);
}

.ubicacion-card h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.mapa {
    margin-bottom: 15px;
}

.mapa img {
    border-radius: 8px;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.ubicacion-card p {
    margin-bottom: 10px;
    color: #34495e;
}

@media (width < 768px) {
    .ubicacion-card {
        width: 100%;
    }

    img {
        width: 400px !important;
    }
}